forked from Colu-platform/colu-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.06 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.06 KB
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
{
"name": "colu",
"version": "0.10.16",
"description": "Colu SDK for engine and colored-coins api.",
"main": "src/colu.js",
"scripts": {
"start": "node bin/run.js",
"test": "istanbul cover _mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"browserify": "browserify ./src/colu.js -o ./client/colu.client.js --im -s Colu",
"uglify": "uglifyjs -c -o ./client/colu.client.min.js -- ./client/colu.client.js",
"client_commit": "git commit --quiet ./client -m \"browserify and uglify\" || echo \"No changes to commit\"",
"preversion": "npm run browserify && npm run uglify && npm run client_commit"
},
"bin": {
"colu": "bin/run.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Colu-platform/colu-nodejs.git"
},
"keywords": [
"colu",
"engine",
"colored",
"coins",
"bitcoin"
],
"contributors": [
{
"name": "Tal Beja",
"email": "tal@colu.co"
},
{
"name": "Eliran Zach",
"email": "thehobbit85@gmail.com"
},
{
"name": "Oded Leiba",
"email": "oded@colu.co"
}
],
"license": "https://www.colu.co/TOS",
"bugs": {
"url": "https://github.com/Colu-platform/colu-nodejs/issues"
},
"homepage": "https://github.com/Colu-platform/colu-nodejs",
"dependencies": {
"assert": "^1.3.0",
"async": "^1.3.0",
"basic-auth": "^1.0.3",
"body-parser": "^1.13.3",
"browserify": "13.0.0",
"coloredcoinsd-wraper": "~0.4.0",
"crypto-hashing": "^0.3.1",
"data-storage": "~0.0.7",
"express": "^4.13.3",
"fs": "0.0.2",
"hdwallet": "~0.4.19",
"jsonfile": "^2.2.1",
"mkpath": "^0.1.0",
"morgan": "^1.6.1",
"node-express-json-rpc2-async": "^1.0.2",
"path-extra": "^1.0.3",
"request": "2.69.0",
"should": "^8.1.1",
"socket.io-client": "^1.3.7",
"supertest": "^1.1.0",
"uglify-js": "^2.5.0"
},
"devDependencies": {
"browserify": "13.0.0",
"chai": "^3.0.0",
"istanbul": "^0.3.22",
"mocha": "^2.2.4",
"uglify": "^0.1.5",
"portfinder": "^0.4.0"
}
}