forked from duniter/duniter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.29 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
{
"name": "duniter",
"version": "0.31.0",
"engines": {
"node": ">=4.2.0",
"npm": ">=2.11"
},
"engineStrict": true,
"private": false,
"description": "Crypto-currency software allowing to build P2P free currencies",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --growl --timeout 20000 test test/fast test/fast/block test/integration test/",
"start": "node bin/duniter start",
"test-travis": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --timeout 20000 test test/fast test/fast/block test/integration test/"
},
"repository": {
"type": "git",
"url": "[email protected]:duniter/duniter.git"
},
"keywords": [
"duniter",
"ucoin",
"openudc",
"crypto-currency"
],
"author": "Cedric Moreau <[email protected]>",
"license": "GPLv3",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/duniter/duniter/issues"
},
"dependencies": {
"archiver": "1.0.1",
"async": "1.5.2",
"bindings": "1.2.1",
"body-parser": "1.14.2",
"co": "4.6.0",
"colors": "1.1.2",
"commander": "2.9.0",
"cors": "2.7.1",
"daemonize2": "0.4.2",
"errorhandler": "1.4.3",
"event-stream": "3.1.5",
"express": "4.13.4",
"express-cors": "0.0.3",
"express-fileupload": "0.0.5",
"inquirer": "0.8.5",
"jison": "0.4.17",
"merkle": "0.4.0",
"moment": "2.6.0",
"morgan": "1.6.1",
"multimeter": "0.1.1",
"naclb": "1.3.5",
"nnupnp": "1.0.1",
"optimist": "0.6.1",
"q": "1.1.2",
"q-io": "1.13.2",
"request": "2.31.0",
"request-promise": "0.4.2",
"scryptb": "6.0.4",
"sha1": "1.1.0",
"sqlite3b": "3.1.2",
"superagent": "1.4.0",
"tweetnacl": "0.14.1",
"underscore": "1.8.3",
"unzip": "0.1.11",
"unzip2": "0.2.5",
"vucoin": "0.30.4",
"winston": "2.1.1",
"wotb": "0.4.11",
"ws": "1.0.1"
},
"devDependencies": {
"coveralls": "2.11.4",
"eslint": "0.21.1",
"eslint-plugin-mocha": "0.2.2",
"istanbul": "0.4.0",
"mocha": "2.2.5",
"mocha-eslint": "0.1.7",
"mocha-lcov-reporter": "1.0.0",
"sha1": "",
"should": "",
"supertest": "",
"tmp": "0.0.29"
},
"bin": {
"duniter": "./bin/duniter"
}
}