forked from kyledrake/coinpunk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "coinpunk",
"description": "DIY Bitcoin Wallet Service",
"version": "0.2.1",
"directories": {
"lib": "./lib"
},
"main": "app.js",
"author": "Kyle Drake <kyledrake@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/kyledrake/coinpunk.git"
},
"dependencies": {
"express": "~3.4.4",
"optimist": "~0.6.0",
"redis": "~0.9.0",
"request": "~2.27.0",
"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",
"grunt-contrib-uglify": "~0.2.7",
"grunt-contrib-watch": "~0.5.3",
"browserify": "3.19.1",
"uglify-js": "2.4.8"
},
"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"
}
}