-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1019 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
32
33
{
"name": "chiggity",
"version": "0.1.0-alpha.1",
"author": "Evan Prodromou <evan@e14n.com>",
"description": "A checkin server for the pump network",
"dependencies": {
"pump.io-client-app": "0.8.x",
"async": "0.2.x",
"underscore": "1.5.x",
"request": "2.33.x",
"xml2js": "0.4.x"
},
"devDependencies": {
"coffee-script": "1.6.x",
"vows": "0.7.x"
},
"repository": {
"type": "git",
"url": "https://github.com/e14n/chiggity.git"
},
"license": "Apache 2.0",
"scripts": {
"build": "mkdir -p lib/ && coffee -b -c -o lib/ src/*.coffee",
"clean": "rm -f lib/*.js test/*-test.js *~ lib/*~ src/*~ test/*~",
"pretest": "coffee -c test/*-test.coffee && npm run-script build",
"test": "vows --spec -i test/*-test.js",
"posttest": "npm run-script clean",
"prepublish": "npm run-script build",
"postpublish": "npm run-script clean",
"prestart": "npm run-script build",
"start": "node lib/app.js"
}
}