-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
52 lines (51 loc) · 1.37 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
{
"name": "richwallet",
"description": "DIY Multi Encryptcoin Wallet Service",
"version": "0.2.17",
"directories": {
"lib": "./lib"
},
"main": "app.js",
"author": "Ke Zeng <superisaac.ke@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/haobtc/richwallet.git"
},
"dependencies": {
"async": "~0.9.0",
"browserify": "~2.35.2",
"express": "~3.4.4",
"indexeddb-js": "~0.0.14",
"mongodb": "~1.3.23",
"multijson-config": "^0.1.6",
"nodemailer": "~0.4.2",
"optimist": "~0.6.0",
"redis": "~0.9.0",
"request": "~2.27.0",
"sjcl": "^1.0.6",
"sockjs": "~0.3.8",
"speakeasy": "~1.0.3"
},
"devDependencies": {
"mocha": "~1.8.1",
"istanbul": "~0.1.30",
"supertest": "~0.8.1",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.11",
"grunt-shell": "~0.5.0",
"webdriverjs": "~0.7.14",
"chai": "~1.8.1",
"phantomjs": "~1.9.2",
"redis-mock": "~0.2.0",
"gulp-cleancss": "~0.2.1",
"grunt-contrib-uglify": "~0.2.7",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-concat": "~0.4.0",
"uglify-js": "~2.4.3"
},
"scripts": {
"test": "NODE_ENV=test istanbul test ./node_modules/.bin/_mocha -- --reporter list test/coinpunk/*",
"browsertest": "./node_modules/.bin/_mocha --reporter list test/browser/functional.js",
"grunt": "./node_modules/.bin/grunt"
}
}