-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "storj-bridge-client",
"version": "0.5.2",
"description": "api client library and cli for storj bridge",
"main": "index.js",
"scripts": {
"test": "",
"build": "npm run build-bundle && npm run build-minify && echo $(date) >> dist/timestamp.txt",
"build-bundle": "./node_modules/.bin/browserify index.js -s StorjAPI -o dist/storj-api.browser.js",
"build-minify": "./node_modules/.bin/uglifyjs dist/storj-api.browser.js -o dist/storj-api.browser.min.js"
},
"bin": {
"storjcli": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/storj/bridge-client-javascript.git"
},
"keywords": [
"bridge",
"storj",
"client"
],
"author": "Gordon Hall <[email protected]>",
"contributors": [
{
"name": "Philip Hutchins",
"url": "https://github.com/phutchins"
}
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/storj/bridge-client-javascript/issues"
},
"homepage": "https://github.com/storj/bridge-client-javascript#readme",
"dependencies": {
"async": "^1.5.2",
"colors": "^1.1.2",
"commander": "^2.9.0",
"elliptic": "^6.2.3",
"mime": "^1.3.4",
"node-uuid": "^1.4.7",
"prompt": "^1.0.0",
"request": "^2.67.0",
"storj": "^1.0.1",
"through": "^2.3.8"
},
"devDependencies": {
"browserify": "^13.0.0",
"uglify-js": "^2.6.2"
}
}