forked from box/box-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 KB
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
{
"name": "box-node-sdk",
"author": "Box <[email protected]>",
"version": "1.15.0",
"description": "Official Box SDK for Node.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/box/box-node-sdk.git"
},
"engines": {
"node": ">= 4.0.0"
},
"main": "./lib/box-node-sdk.js",
"scripts": {
"test": "node Makefile.js",
"lint": "node Makefile.js lint",
"docs": "node Makefile.js docs",
"docs-dev": "node Makefile.js docsDev",
"deps": "npm prune && npm install",
"patch": "node Makefile.js patch",
"minor": "node Makefile.js minor",
"major": "node Makefile.js major"
},
"dependencies": {
"bluebird": "^3.5.0",
"http-status": "^1.0.1",
"jsonwebtoken": "^8.1.0",
"merge-options": "1.0.0",
"promise-queue": "^2.2.3",
"request": "^2.74.0",
"url-template": "^2.0.8",
"uuid": "^3.0.0"
},
"devDependencies": {
"chai": "^4.1.1",
"eslint": "^4.13.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-unicorn": "^4.0.2",
"istanbul": "^0.4.3",
"jsdoc": "^3.5.5",
"jsonlint2": "^1.7.1",
"leche": "^2.2.2",
"mocha": "^5.0.1",
"mockery": "^2.1.0",
"nock": "^9.0.13",
"nsp": "^3.1.0",
"nyc": "^11.4.1",
"semver": "^5.4.1",
"shelljs": "^0.8.1",
"shelljs-nodecli": "^0.1.1",
"sinon": "^4.3.0"
}
}