This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
forked from koltyakov/sp-rest-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.07 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
{
"name": "sp-rest-proxy",
"description": "SharePoint REST API Proxy for Node.js and Express local serve",
"version": "2.5.5",
"main": "./dist/index.js",
"typings": "./dist/index/RestProxy",
"scripts": {
"serve": "ts-node ./src/server",
"build": "gulp tsc",
"test": "ts-node ./test/init && mocha --opts test/mocha.opts || ECHO.",
"test:manual": "ts-node ./test/manual/server",
"upgrade": "ncu --upgrade --upgradeAll && yarn upgrade",
"docker": "ts-node ./docker/scripts/publish"
},
"keywords": [
"sharepoint",
"rest",
"proxy",
"debug",
"API"
],
"repository": {
"type": "git",
"url": "git+https://github.com/koltyakov/sp-rest-proxy.git"
},
"author": "Andrew Koltyakov <[email protected]>",
"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.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"node-sp-auth-config": "^2.4.4",
"socket.io": "^2.0.4",
"sp-request": "^2.1.3"
},
"devDependencies": {
"@microsoft/gulp-core-build-serve": "^3.1.14",
"@types/chai": "^4.0.5",
"@types/colors": "^1.1.3",
"@types/core-js": "^0.9.43",
"@types/express": "^4.0.39",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"@types/request-promise": "^3.0.32",
"@types/socket.io": "^1.4.31",
"@types/socket.io-client": "^1.4.32",
"@types/xml2js": "^0.4.2",
"axios": "^0.17.1",
"chai": "^4.1.2",
"colors": "^1.1.2",
"cpass": "^2.0.3",
"del": "^3.0.0",
"eslint-config-standard": "^10.2.1",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.6.1",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^3.2.3",
"merge-stream": "^1.0.1",
"minimist": "^1.2.0",
"mocha": "^4.0.1",
"sp-pnp-js": "^3.0.1",
"sp-pnp-node": "^2.0.1",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.6.1",
"xml2js": "^0.4.19",
"yargs": "^10.0.3"
}
}