forked from basecamp/pow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 767 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 767 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
{ "name": "pow"
, "description": "Zero-configuration Rack server for Mac OS X"
, "version": "0.4.0"
, "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.22"
, "connect": "~> 1.8.0"
, "log": ">= 1.1.1"
, "nack": "~> 0.13"
, "request": "~> 2.2"
, "dnsserver": "https://github.com/sstephenson/dnsserver.js/tarball/4f2c713b2e"
}
, "devDependencies": {
"eco": "~> 1.1.0"
, "nodeunit": ">= 0.7.4"
, "coffee-script": "1.3.3"
}
, "engines" : { "node" : ">= 0.6.0" }
, "scripts": {
"pretest": "cake pretest"
, "test": "cake test"
, "start": "cake start"
, "stop": "cake stop"
}
}