forked from SharePoint/PnP-JS-Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.96 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
{
"name": "ais-sp-pnp-js",
"version": "1.0.4",
"description": "A reusable JavaScript library targeting SharePoint client-side development. https://github.com/OfficeDev/PnP-Sites-Core/ || https://github.com/AgileIS/PnP-JS-Core -- With some changes and updates used in https://github.com/AgileIS/ais-sp-js-deployment ",
"main": "./lib/pnp.js",
"typings": "./lib/pnp",
"dependencies": {
"es6-promise": "^3.0.0"
},
"devDependencies": {
"browser-sync": "^2.11.1",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"del": "^2.2.1",
"gulp": "^3.9.1",
"gulp-debug": "^2.1.2",
"gulp-exec": "^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": "^2.11.0",
"gulp-uglify": "^1.5.3",
"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.4",
"typescript": "^1.7.5",
"typings": "^1.0.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"test": "gulp test",
"postinstall": "typings install",
"pack-sync": "gulp package && npm pack && gulp package-sync && rm sp-pnp-js-*.tgz"
},
"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"
}
}