-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
87 lines (87 loc) · 2.11 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
82
83
84
85
86
87
{
"name": "cc-wallet-core",
"version": "0.9.0",
"description": "Bitcoin wallet with colored coins support.",
"keywords": [
"bitcoin",
"testnet",
"colored",
"coins",
"colored coins",
"wallet"
],
"bugs": {
"url": "https://github.com/chromaway/cc-wallet-core/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"
],
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/chromaway/cc-wallet-core.git"
},
"scripts": {
"coverage": "find test/ -type f -name \"*.js\" | xargs istanbul cover _mocha",
"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": "find test/ -type f -name \"*.js\" | xargs istanbul test mocha -- --reporter spec"
},
"dependencies": {
"babel-core": "^5.8.22",
"blockchainjs": "^0.3.12",
"bs58": "^3.0.0",
"errno": "=0.1.1",
"localStorage": "^1.0.3",
"lodash": "^3.10.1",
"q": "^1.1.2",
"script2addresses": "^1.2.0",
"store": "^1.3.17",
"sync-mixin": "^1.0.2"
},
"peerDependencies": {
"bitcore-lib": "^0.13.7",
"coloredcoinjs-lib": "^0.6.4"
},
"devDependencies": {
"bip39": "^2.1.0",
"chai": "^3.4.0",
"chai-as-promised": "^5.1.0",
"coveralls": "^2.11.3",
"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.2.5",
"standard": "^5.3.1"
},
"engines": {
"node": ">=0.12"
},
"standard": {
"globals": [
"describe",
"xdescribe",
"before",
"after",
"beforeEach",
"afterEach",
"it"
]
}
}