-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
71 lines (71 loc) · 2.25 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
{
"name": "bitstore",
"description": "A content-addressable cloud storage web service that uses Bitcoin public key infrastructure for authentication and payment.",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint ./src ./test",
"test": "mocha test/ --opts mocha.opts",
"build": "babel ./src --out-dir ./lib --copy-files",
"bundle": "npm run build && browserify ./lib/index.js -s bitstore > browser/bundle.js",
"pretest": "npm run lint",
"cli": "babel-node -- ./src/cli.js",
"preversion": "npm test",
"version:changelog": "conventional-changelog -p angular -i CHANGELOG.md -w && git add CHANGELOG.md && git commit -m \"bump changelog\"",
"version:recommended": "conventional-recommended-bump --preset=angular",
"version:auto": "npm version $(npm run --silent version:recommended) && npm run version:changelog && git push --tags && git push",
"release": "npm run version:auto && npm publish",
"prepublish": "npm run build"
},
"release": {},
"bin": {
"bitstore": "./lib/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/blockai/bitstore-client.git"
},
"keywords": [
"bitstore",
"bitcoin",
"content-addressable"
],
"author": "William Cotton <[email protected]>",
"contributors": [
"Olivier Lalonde <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/blockai/bitstore-client/issues"
},
"homepage": "https://github.com/blockai/bitstore-client",
"dependencies": {
"bitcoinjs-lib": "^1.5.7",
"chalk": "^1.1.1",
"commander": "^2.9.0",
"debug": "^2.2.0",
"nconf": "^0.7.1",
"superagent": "^1.2.0",
"superagent-as-promised": "^3.2.0"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.3.13",
"browserify": "^10.2.0",
"chai": "^3.3.0",
"conventional-changelog": "^0.5.1",
"conventional-recommended-bump": "0.0.3",
"cz-conventional-changelog": "^1.1.2",
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"mocha": "^2.2.4",
"semantic-release": "^4.3.5"
},
"version": "2.5.0",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog/"
}
}
}