-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
111 lines (111 loc) · 3.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "spfx-base-data-services",
"description": "A set of tools to create powerfull dataservices on spfx applications",
"version": "1.1.91",
"author": {
"name": "Matthieu LANGLOIS",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Matthieu LANGLOIS",
"email": "[email protected]"
},
{
"name": "Matthieu CHUZEVILLE"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mlanglois83/spfx-base-data-services/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mlanglois83/spfx-base-data-services.git"
},
"homepage": "https://github.com/mlanglois83/spfx-base-data-services",
"badges": [
{
"href": "https://lgtm.com/projects/g/mlanglois83/spfx-base-data-services/alerts/",
"description": "Total alerts",
"url": "https://img.shields.io/lgtm/alerts/g/mlanglois83/spfx-base-data-services.svg?logo=lgtm&logoWidth=18"
},
{
"description": "Language grade: JavaScript",
"href": "https://lgtm.com/projects/g/mlanglois83/spfx-base-data-services/context:javascript",
"url": "https://img.shields.io/lgtm/grade/javascript/g/mlanglois83/spfx-base-data-services.svg?logo=lgtm&logoWidth=18"
},
{
"description": "npm",
"url": "https://img.shields.io/npm/dw/spfx-base-data-services",
"href": "https://www.npmjs.com/package/spfx-base-data-services"
},
{
"description": "npm",
"url": "https://img.shields.io/npm/v/spfx-base-data-services",
"href": "https://www.npmjs.com/package/spfx-base-data-services"
},
{
"description": "GitHub package.json version (branch)",
"url": "https://img.shields.io/github/package-json/v/mlanglois83/spfx-base-data-services/V1.1",
"href": "https://github.com/mlanglois83/spfx-base-data-services"
}
],
"keywords": [
"spfx",
"sharepoint",
"data-service",
"framework",
"office365"
],
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"@microsoft/sp-core-library": "^1.10.0",
"@microsoft/sp-lodash-subset": "^1.10.0",
"@microsoft/sp-property-pane": "^1.10.0",
"@microsoft/sp-webpart-base": "^1.10.0",
"@pnp/common": "^1.3.10",
"@pnp/graph": "^1.3.10",
"@pnp/logging": "^1.3.10",
"@pnp/odata": "^1.3.10",
"@pnp/pnpjs": "^1.3.10",
"@pnp/sp": "^1.3.10",
"@pnp/sp-clientsvc": "^1.3.10",
"@pnp/sp-taxonomy": "^1.3.10",
"@types/es6-promise": "0.0.33",
"async-mutex": "^0.2.2",
"idb": "^3.0.2",
"mime-types": "^2.1.24"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"child_process": "^1.0.2",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-plugin-tsdoc": "^0.2.3",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-if": "^3.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^6.0.0-alpha.1",
"tslint": "^6.0.0",
"typedoc": "^0.16.11",
"typescript": "^3.9.6"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended"
]
}
}