forked from fanatid/coloredcoinjs-lib
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
105 lines (105 loc) · 2.76 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "coloredcoinjs-lib",
"version": "0.6.4",
"description": "Colored coin JavaScript library for Bitcoin.",
"keywords": [
"bitcoin",
"coloredcoins",
"colored",
"coins",
"epobc"
],
"bugs": {
"url": "https://github.com/chromaway/coloredcoinjs-lib/issues"
},
"license": "MIT",
"author": "Chromaway AB",
"contributors": [
{
"name": "Alex Mizrahi",
"email": "alex.mizrahi@gmail.com"
},
{
"name": "Fabian Barkhau",
"email": "fabian.barkhau@gmail.com"
},
{
"name": "Kirill Fomichev",
"email": "fanatid@ya.ru"
}
],
"files": [
"lib",
"src",
"LICENSE",
"README.md"
],
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/chromaway/coloredcoinjs-lib.git"
},
"scripts": {
"prepublish": "npm run clean && npm run compile",
"clean": "rm -rf lib/*",
"compile": "babel -d lib src",
"compile:watch": "babel -d lib src -w",
"coverage": "find test/ -type f -name \"*.js\" | xargs istanbul cover _mocha -- --compilers js:babel/register",
"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 -- --compilers js:babel/register --reporter spec"
},
"dependencies": {
"babel-runtime": "^5.8.20",
"bs58": "^3.0.0",
"core-decorators": "^0.8.1",
"error-system": "^1.0.0",
"lodash": "^3.10.1",
"odd-storage": "^0.6.0",
"ready-mixin": "^2.0.0"
},
"peerDependencies": {
"bitcore-lib": "^0.13.7"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-eslint": "^4.0.5",
"babelify": "^6.4.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",
"pg": "^4.4.3",
"sqlite3": "^3.1.0",
"standard": "^5.3.1"
},
"engines": {
"node": ">=0.10"
},
"browser": {
"./lib/storage/data/index.js": "./lib/storage/data/index-browser.js",
"./lib/storage/definitions/index.js": "./lib/storage/definitions/index-browser.js",
"./src/storage/data/index.js": "./src/storage/data/index-browser.js",
"./src/storage/definitions/index.js": "./src/storage/definitions/index-browser.js"
},
"standard": {
"globals": [
"describe",
"xdescribe",
"beforeEach",
"afterEach",
"it"
],
"parser": "babel-eslint"
}
}