-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "baron",
"version": "0.9.3",
"description": "Bitcoin payment processor",
"keywords": [
"bitcoin",
"money",
"currency",
"payment"
],
"main": "server.js",
"scripts": {
"test": "./node_modules/.bin/mocha -R spec ./tests",
"start": "foreman start -f Procfile",
"start-dev": "foreman start -f Procfile-dev",
"dev": "foreman run nodemon server.js | ./node_modules/.bin/bunyan -o short"
},
"repository": {
"type": "git",
"url": "git://github.com/slickage/baron.git"
},
"author": "Slickage <info@slickage.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/slickage/baron/issues"
},
"homepage": "https://github.com/slickage/baron",
"dependencies": {
"async": "^0.9.0",
"bignumber.js": "^1.4.1",
"body-parser": "^1.5.0",
"bunyan": "^1.8.1",
"ejs": "^2.5.7",
"express": "^4.4.5",
"heckler": "git+https://github.com/slickage/heckler",
"lodash": "^2.4.1",
"nano": "^5.10.0",
"qr-image": "^1.2.0",
"request": "^2.83.0",
"sanitize-html": "^1.3.0"
},
"devDependencies": {
"mocha": "^1.18.2"
}
}