forked from m4z3n/capcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
{
"name": "capcoin",
"version": "2.5.0",
"engines": {
"node": ">= 6.0.0"
},
"description": "Gets data from coincap.io in the CLI",
"main": "cli.js",
"bin": {
"capcoin": "./bin/capcoin"
},
"scripts": {
"test": "mocha",
"lint": "jshint lib test",
"preversion": "npm run lint",
"changelog": "rm CHANGELOG.md && changelog https://github.com/sebs/capcoin all > CHANGELOG.md && git add . && git commit . -m changelog",
"postversion": "git push && git push --tags && npm run changelog && git push ",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sebs/capcoin.git"
},
"keywords": [
"bitcoin",
"ethereum",
"dogecoin"
],
"author": "Sebastian Sch端rmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/sebs/capcoin/issues"
},
"homepage": "https://github.com/sebs/capcoin#readme",
"devDependencies": {
"chai": "^4.0.2",
"changelog": "^1.3.0",
"child-process-promise": "^2.1.3",
"mocha": "^3.1.0"
},
"dependencies": {
"babar": "^0.1.0",
"blessed": "^0.1.81",
"blessed-contrib": "^4.7.5",
"child-process-promise": "^2.2.0",
"cli-table2": "^0.2.0",
"commander": "^2.11.0",
"jshint": "^2.9.5",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"marked-man": "^0.2.1",
"marked-terminal": "^2.0.0",
"mocha": "^3.2.0",
"restify-clients": "^1.5.0",
"socket.io-client": "^2.0.3",
"snyk": "^1.41.1"
},
"snyk": true
}