forked from koltyakov/sp-rest-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.81 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
{
"name": "sp-rest-proxy",
"description": "SharePoint REST API Proxy for Node.js and Express local serve",
"version": "2.3.4",
"main": "./dist/index.js",
"typings": "./dist/index",
"scripts": {
"serve": "gulp tsc && node ./dist/server",
"ts-serve": "ts-node ./src/server",
"build": "gulp tsc",
"test": "ts-node ./test/init && mocha --opts test/mocha.opts || ECHO."
},
"keywords": [
"sharepoint",
"rest",
"proxy",
"debug",
"API"
],
"repository": {
"type": "git",
"url": "git+https://github.com/koltyakov/sp-rest-proxy.git"
},
"author": "Andrew Koltyakov <andrew.koltyakov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koltyakov/sp-rest-proxy/issues"
},
"homepage": "https://github.com/koltyakov/sp-rest-proxy#readme",
"dependencies": {
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"express": "^4.14.0",
"node-sp-auth": "^1.3.3",
"node-sp-auth-config": "^2.0.0",
"socket.io": "^2.0.1",
"sp-request": "^2.0.3"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/colors": "^1.1.3",
"@types/core-js": "^0.9.41",
"@types/express": "^4.0.35",
"@types/mocha": "^2.2.41",
"@types/node": "^6.0.73",
"@types/socket.io": "^1.4.29",
"@types/socket.io-client": "^1.4.29",
"@types/xml2js": "^0.0.33",
"axios": "^0.16.1",
"chai": "^4.0.0",
"colors": "^1.1.2",
"cpass": "^2.0.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-tslint": "^8.0.0",
"gulp-typescript": "^3.1.6",
"merge-stream": "^1.0.1",
"minimist": "^1.2.0",
"mocha": "^3.4.2",
"sp-pnp-js": "^2.0.5",
"sp-pnp-node": "^0.1.9",
"ts-node": "^3.0.4",
"tslint": "^5.2.0",
"typescript": "^2.3.2",
"xml2js": "^0.4.17",
"yargs": "^8.0.1"
}
}