forked from Ebookcoin/ebookcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 2.94 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
106
107
108
109
110
111
112
113
114
115
{
"name": "ebookcoin",
"version": "0.1.3",
"privated": true,
"scripts": {
"start": "node app.js",
"test": "mocha",
"cov": "mocha --require blanket -R html-cov test/helpers test/logic > tmp/coverage.html"
},
"engines": {
"node": "0.12.*"
},
"author": "",
"dependencies": {
"array.prototype.find": "~1.0.0",
"array.prototype.findindex": "*",
"async": "^1.5.2",
"basic-auth": "*",
"basic-auth-connect": "^1.0.0",
"body-parser": "*",
"bytebuffer": "*",
"change-case": "*",
"colors": "*",
"commander": "~2.6.0",
"sandbox": "https://github.com/Ebookcoin/sandbox/tarball/master",
"cycle": "^1.0.3",
"dblite": "https://github.com/Ebookcoin/dblite/tarball/master",
"decompress-zip": "^0.2.0",
"ed25519": "0.0.4",
"ed2curve": "^0.1.3",
"ejs": "*",
"esprima": "~1.2.3",
"express": "4.x",
"express-domain-middleware": "*",
"express-query-int": "https://github.com/Ebookcoin/express-query-int/tarball/master",
"extend": "^2.0.0",
"gift": "^0.6.1",
"image-type": "^2.0.2",
"ip": "*",
"js-nacl": "^0.6.0",
"json-schema": "~0.2.2",
"json-sql": "https://github.com/Ebookcoin/json-sql/tarball/master",
"jsonschema": "^1.0.0",
"knuth-shuffle": "~1.0.1",
"long": "^1.1.5",
"method-override": "*",
"node-schedule": "~0.1.16",
"npm": "^2.12.1",
"pkginfo": "^0.3.0",
"randomstring": "*",
"request": "*",
"rimraf": "^2.4.1",
"rmdir": "^1.1.0",
"socket.io": "*",
"stack-trace": "0.0.9",
"strftime": "*",
"toposort": "~0.2.10",
"underscore": "https://github.com/Ebookcoin/underscore/tarball/master",
"unzip": "*",
"unzip2": "^0.2.5",
"usage": "^0.7.1",
"util-extend": "*",
"valid-url": "^1.0.9",
"validator": "^4.0.6",
"validator.js": "^1.2.2",
"z-schema": "https://github.com/Ebookcoin/z-schema/tarball/master"
},
"devDependencies": {
"blanket": "~1.1.6",
"browserify-bignum": "^1.3.0-2",
"buffer": "^3.0.3",
"chai": "^3.0.0",
"cli-table": "~0.3.1",
"crypto-browserify": "^3.9.13",
"faker": "~2.1.2",
"grunt": "^0.4.5",
"grunt-apidoc": "^0.11.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-compress": "^0.14.0",
"grunt-contrib-jshint": "^0.11.3",
"grunt-exec": "^0.4.6",
"grunt-obfuscator": "^0.1.0",
"lodash": "^3.9.3",
"mocha": "^2.2.5",
"moment": "^2.9.0",
"should": "~4.6.0",
"supertest": "^1.0.1"
},
"apidoc": {
"title": "Ebookcoin Api Docs",
"url": "http://test.ebookchain.org",
"sampleUrl": "http://test.ebookchain.org",
"header": {
"title": "About these Docs",
"filename": "docs/header.md"
},
"template": {
"withCompare": true,
"withGenerator": true
}
},
"config": {
"blanket": {
"pattern": [
"helpers",
"logic"
],
"data-cover-never": [
"node_modules",
"test",
"tmp"
]
}
}
}