-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "storj-sugar",
"version": "0.1.5",
"description": "Storj helper methods and Syntactic sugar",
"main": "index.js",
"directories": {
"test": "test",
"lib": "lib",
"doc": "doc"
},
"scripts": {
"test": "npm run testsuite && npm run linter",
"testsuite": "STORJ_ALLOW_LOOPBACK=1 ./node_modules/.bin/mocha test/** --recursive",
"coverage": "STORJ_ALLOW_LOOPBACK=1 ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive",
"linter": "./node_modules/.bin/jshint --config .jshintrc ./index.js ./lib ./test",
"make-docs": "mkdir -p ./jsdoc && rm -r ./jsdoc && ./node_modules/.bin/jsdoc index.js lib -r -R README.md -u ./doc -c .jsdoc.json --verbose -d ./jsdoc && cp -r doc/assets jsdoc/assets",
"publish-docs": "npm run make-docs && node script/publishdoc.js"
},
"keywords": [
"storj",
"sugar",
"p2p"
],
"repository": {
"type": "git",
"url": "https://github.com/storj/storj-sugar.git"
},
"author": "Philip Hutchins <[email protected]>",
"contributors": [],
"license": "AGPL-3.0",
"engines": {
"node": "^4.4.4"
},
"dependencies": {
"mime-types": "^2.1.12",
"storj-lib": "^4.0.2"
},
"devDependencies": {
"chai": "^2.2.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.13",
"jsdoc": "^3.4.0",
"jshint": "2.8.0",
"mocha": "^2.2.4",
"proxyquire": "^1.7.3",
"sinon": "^1.14.1"
}
}