forked from SharePoint/PnP-JS-Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.94 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
{
"name": "sp-pnp-js",
"version": "1.0.5",
"description": "A reusable JavaScript library targeting SharePoint client-side development.",
"main": "./lib/pnp.js",
"typings": "./lib/pnp",
"dependencies": {
"@types/core-js": "^0.9.34",
"@types/microsoft-ajax": "0.0.31",
"@types/sharepoint": "^2013.0.31",
"@types/whatwg-fetch": "0.0.32",
"es6-promise": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.45",
"browser-sync": "^2.11.1",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"del": "^2.2.1",
"gulp": "^3.9.1",
"gulp-cli": "^1.2.2",
"gulp-debug": "^2.1.2",
"gulp-header": "^1.8.8",
"gulp-istanbul": "^1.0.0",
"gulp-mocha": "^3.0.1",
"gulp-plumber": "^1.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-spsave": "^2.0.0",
"gulp-tslint": "^6.0.2",
"gulp-typedoc": "^2.0.0",
"gulp-typescript": "^3.0.2",
"gulp-uglify": "^2.0.0",
"handlebars": "^4.0.5",
"merge2": "^1.0.2",
"mocha": "^3.0.2",
"node-fetch": "^1.4.1",
"run-sequence": "^1.1.5",
"tslint": "^3.14.0",
"typedoc": "^0.4.5",
"typescript": "^2.0.3",
"typings": "^1.4.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git://github.com/OfficeDev/PnP-JS-Core"
},
"author": {
"name": "Microsoft and other contributors"
},
"license": "MIT",
"keywords": [
"sharepoint",
"office365",
"tools"
],
"bugs": {
"url": "https://github.com/OfficeDev/PnP-JS-Core/issues"
},
"homepage": "https://github.com/OfficeDev/PnP-JS-Core",
"browser": {
"./build/src/net/nodefetchclient.js": "./build/src/net/nodefetchclientbrowser.js",
"./lib/net/nodefetchclient.js": "./lib/net/nodefetchclientbrowser.js"
}
}