-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
59 lines (59 loc) · 1.68 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
{
"name": "colordcoinsd",
"version": "0.0.1",
"author": "",
"description": "Abstraction for Colored-Coins operations",
"contributors": [],
"main": "./app.js",
"keywords": [],
"dependencies": {
"aws-sdk": "^2.1.17",
"bignumber.js": "^2.0.7",
"bitcoin": "git://github.com/rottev/node-bitcoin.git#master",
"bitcoinjs-lib": "~1.5.1",
"bitcore": "^0.9.5",
"bitcore-p2p": "^0.9.1",
"body-parser": "1.16.1",
"bs58check": "^1.0.3",
"cc-assetid-encoder": "^0.6.0",
"cc-errors": "~0.0.7",
"cc-request-id": "~0.0.3",
"cc-transaction": "^1.2.0",
"cls-middleware": "^1.1.0",
"continuation-local-storage": "^3.1.7",
"cors": "^2.7.1",
"express": "4.10.4",
"express-winston": "^2.1.0",
"lodash": "4.17.4",
"node-rest-client": "2.5.0",
"node-rsa": "^0.2.24",
"on-finished": "^2.3.0",
"piwik-tracker": "^0.1.2",
"q": "1.4.1",
"redis": "^0.12.1",
"swagger-node-express": "git://github.com/Colored-Coins/swagger-node.git#2.0.3-fix",
"swagger-validation": "~1.2",
"winston": "^2.3.0"
},
"noAnalyze": true,
"engines": {
"node": ">=0.10"
},
"devDependencies": {
"istanbul": "^0.3.20",
"mocha": "^2.3.3",
"supertest": "^1.1.0",
"xunit-file": "0.0.7"
},
"optionalDependencies": {},
"apidoc": {
"title": "ColordCoins api documentation",
"url": "http://localhost:8080"
},
"scripts": {
"start": "node app.js",
"test": "mocha --recursive test --reporter-options=xunit.xml",
"ci-full": "istanbul cover _mocha -- -R xunit-file",
"test-windows": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha/ -- -R xunit-file && istanbul report html"
}
}