forked from box/box-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.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
{
"name": "box-node-sdk",
"author": "Box <[email protected]>",
"version": "1.1.0",
"description": "A 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",
"deps": "npm prune && npm install",
"patch": "node Makefile.js patch",
"minor": "node Makefile.js minor",
"major": "node Makefile.js major"
},
"dependencies": {
"http-status": "^0.2.2",
"jsonwebtoken": "^5.7.0",
"merge-options": "0.0.64",
"node-uuid": "^1.4.7",
"request": "^2.74.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.8.0",
"istanbul": "^0.4.3",
"jsdoc": "^3.4.0",
"jsonlint": "~1.6.2",
"leche": "^2.1.1",
"mocha": "^2.4.5",
"mockery": "^1.4.1",
"nock": "^8.0.0",
"shelljs": "^0.3.0",
"shelljs-nodecli": "^0.1.1",
"sinon": "^1.17.3"
}
}