-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.92 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
{
"name": "cc-scanner",
"version": "0.1.1",
"description": "Colored coin scanner",
"keywords": [],
"bugs": {
"url": "https://github.com/chromaway/cc-scanner/issues"
},
"license": "MIT",
"author": "Chromaway AB",
"contributors": [
{
"name": "Alex Mizrahi",
"email": "[email protected]"
},
{
"name": "Henrik Hjelte",
"email": "[email protected]"
},
{
"name": "Kirill Fomichev",
"email": "[email protected]"
}
],
"files": [
"bin",
"src",
"LICENSE",
"README.md"
],
"main": "./bin/cli.js",
"repository": {
"type": "git",
"url": "https://github.com/chromaway/cc-scanner"
},
"scripts": {
"prepublish": "npm run clean && npm run compile",
"clean": "rm -f lib/*.js bin/cli.js",
"compile": "npm run compile:bin && npm run compile:src",
"compile:bin": "babel bin/cli.es6.js -o bin/cli.js",
"compile:src": "mkdir -p lib && babel src -d lib",
"compile:watch": "npm run compile:watch:bin & npm run compile:watch:src",
"compile:watch:bin": "babel bin/cli.es6.js -o bin/cli.js -w",
"compile:watch:src": "mkdir -p lib && babel src -d lib -w",
"lint": "eslint bin/cli.es6.js src"
},
"dependencies": {
"babel": "^5.8.21",
"babel-runtime": "^5.8.20",
"bitcoind-rpc-client": "^0.1.0",
"bitcore-lib": "^0.13.7",
"body": "^5.1.0",
"coloredcoinjs-lib": "^0.6.0",
"core-decorators": "^0.8.1",
"cors": "^2.7.1",
"express": "^4.13.3",
"js-yaml": "^3.3.1",
"lodash": "^3.10.1",
"morgan": "^1.6.1",
"odd-storage": "^0.4.6",
"pg": "^4.4.3",
"pg-native": "^1.9.0",
"progress": "^1.1.8",
"ready-mixin": "^2.0.0",
"source-map-support": "^0.3.2",
"yargs": "^3.19.0"
},
"devDependencies": {
"babel-eslint": "^4.0.10",
"eslint": "^1.1.0",
"eslint-config-standard": "^4.1.0",
"eslint-plugin-standard": "^1.2.0"
},
"private": true
}