forked from basecamp/pow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 867 Bytes
/
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
{ "name": "pow"
, "description": "Zero-configuration Rack server for Mac OS X"
, "version": "0.2.2"
, "author": "Sam Stephenson"
, "repository":
{ "type": "git"
, "url": "http://github.com/sstephenson/pow.git"
}
, "bin": { "pow": "./bin/pow" }
, "main": "./lib/index.js"
, "dependencies": {
"async": "0.1.7"
, "coffee-script": ">= 1.0.0"
, "connect": ">= 1.0.3"
, "log": ">= 1.1.1"
, "nack": ">= 0.10.0"
, "ndns": ">= 0.1.2"
}
, "bundleDependencies" : [ "ndns" ]
, "devDependencies": {
"eco": ">= 1.0.0"
, "nodeunit": ">= 0.5.0"
}
, "engines" : { "node" : ">=0.4.1" }
, "scripts": {
"install": "node node_modules/coffee-script/bin/cake install"
, "test": "node node_modules/coffee-script/bin/cake test"
, "start": "node node_modules/coffee-script/bin/cake start"
, "stop": "node node_modules/coffee-script/bin/cake stop"
}
}