-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 1.95 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
72
73
74
75
76
77
78
79
80
81
{
"name": "cc-wallet-engine",
"version": "0.7.0",
"description": "",
"main": "./src/index.js",
"keywords": [],
"bugs": {
"url": "https://github.com/chromaway/cc-wallet-engine/issues"
},
"license": "MIT",
"author": "Chromaway AB",
"contributors": [
"Alex Mizrahi <[email protected]>",
"Fabian Barkhau <[email protected]>",
"Henrik Hjelte <[email protected]>",
"Kirill Fomichev <[email protected]>"
],
"files": [
"src",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/chromaway/cc-wallet-engine"
},
"scripts": {
"coverage": "istanbul cover _mocha test/*.js",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "standard",
"test": "npm run test:node && npm run test:browser",
"test:browser": "karma start karma.conf.js",
"test:node": "istanbul test mocha -- --reporter spec test/*.js"
},
"dependencies": {
"bip39": "^2.1.0",
"bitcore-lib": "^0.13.10",
"browser-request": "0.3.2",
"cc-wallet-core": "^0.9.0",
"coloredcoinjs-lib": "^0.6.4",
"crypto-js": "3.1.2-5",
"errno": "^0.1.1",
"json-stable-stringify": "^1.0.0",
"lodash": "^3.10.1",
"moment": "^2.8.3",
"q": "^1.1.1",
"request": "2.48.0",
"store": "^1.3.16",
"sync-mixin": "^1.0.2",
"urlsafe-base64": "^1.0.0"
},
"devDependencies": {
"chai": "^3.4.0",
"coveralls": "^2.11.2",
"istanbul": "^0.4.0",
"karma": "^0.13.14",
"karma-browserify": "^4.4.0",
"karma-chrome-launcher": "^0.2.1",
"karma-detect-browsers": "^2.0.2",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"mocha": "^2.0.1",
"standard": "^5.3.1"
},
"engines": {
"node": ">=0.12"
},
"browser": {
"request": "browser-request"
},
"standard": {
"globals": [
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"it"
]
}
}