-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.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
{
"name": "emergencybadges",
"version": "0.0.2",
"description": "A basic framework to help people give recognition via OpenBadges during times of emergency.",
"author": "Rockaway Help",
"license": "MPLv2",
"main": "./app/index.js",
"scripts": {
"start": "node ./app/index.js",
"lint": "jshint app/*",
"seed": "node ./app/lib/database/seed",
"test": "npm run lint && tap ./test/*.test.js",
"build": "./node_modules/.bin/browserify ./app/public/scripts/index.js -o ./app/public/client-script.js",
"watch": "./node_modules/.bin/watchify ./app/public/scripts/index.js -o ./app/public/client-script.js",
"deploy": "git push heroku master; heroku run npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/rockawayhelp/emergencybadges.git"
},
"bugs": {
"url": "https://github.com/rockawayhelp/emergencybadges/issues"
},
"keywords": [
"sms",
"civic-hacking",
"emergency-response"
],
"dependencies": {
"restify": "~2.6.1",
"twilio": "~1.5.0",
"cradle": "~0.6.6",
"lodash": "~2.4.1",
"jquery": "~2.1.0",
"browserify": "~3.28.1"
},
"devDependencies": {
"jshint": "~2.4.3",
"tap": "~0.4.8",
"watchify": "~0.6.1"
},
"engines": {
"node": "0.10.25"
},
"subdomain": "emergencybadges"
}