-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.16 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
47
48
49
50
51
52
53
54
55
{
"name": "headrest",
"author": "Nat Lownes <[email protected]>",
"description": "A restful, CORS enabled development server - for clicking around front end Javascript projects.",
"main": "./lib/index.js",
"version": "0.1.0",
"dependencies": {
"express": "~3.1.0",
"whoadb": "~0.1.x",
"headrest-middleware": "~0.0.x",
"moment": "~2.0.x"
},
"devDependencies": {
"coffee-script": "~1.6.0",
"honk-cake": ">=0.0.5",
"grunt": "~0.4.0",
"mocha": "~1.8.1",
"superagent": "~0.14.x",
"chai": "~1.4.2",
"q": "~0.9.x"
},
"directories": {
"test": "test",
"src": "src",
"lib": "lib"
},
"scripts": {
"test": "cake test",
"test:watch": "cake test:watch",
"build": "find ./src -iname '*.coffee' | xargs coffee -c -o lib"
},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/natlownes/headrest.git"
},
"keywords": [
"REST",
"api",
"webserver",
"server",
"http",
"test",
"testing",
"js",
"frontend",
"ui",
"clicking"
],
"license": "BSD",
"optionalDependencies": {},
"engines": {
"node": ">= 0.8"
}
}