forked from ccorcos/hack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 734 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 734 Bytes
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
{
"name": "hack",
"version": "1.0.0",
"description": "hack your friends!",
"repository": "git@github.com:ccorcos/hack.git",
"engines": {
"node": "5.9.1"
},
"main": "src/index.js",
"bin": {
"hack": "bin/cli.js"
},
"scripts": {
"start": "heroku local web",
"init": "node scripts/init.js",
"deploy": "git push heroku master",
"logs": "heroku logs --tail"
},
"keywords": [
"hack"
],
"author": "Chet Corcos <ccorcos@gmail.com> (http://www.chetcorcos.com/)",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"morgan": "^1.7.0",
"shell-escape": "^0.2.0",
"shelljs": "^0.7.1"
},
"config": {
"key": "__HACK_URL__"
}
}