-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 KB
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
{
"name": "node-simple-router",
"description": "Yet another minimalistic router for node.js",
"tags": [
"http",
"simple",
"routing",
"router",
"utils",
"async",
"promises"
],
"keywords": [
"http",
"url",
"websockets",
"dispatch",
"router",
"request handler",
"middleware",
"async",
"promises"
],
"version": "0.10.2",
"homepage": "http://node-simple-router.herokuapp.com",
"author": "Ernesto Savoretti <esavoretti@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/sandy98/node-simple-router.git"
},
"bugs": {
"url": "http://github.com/sandy98/node-simple-router/issues"
},
"engines": [
"node >= 0.8"
],
"devDependencies": {
"coffee-script": "latest"
},
"main": "./lib/router.js",
"bin": {
"mk-server": "./bin/mk-server"
},
"scripts": {
"nix_test": "if [ ! -f test/server.js ] || [ test/server.js -ot test/server.coffee ]; then scripts/compile_test.sh; fi && test/server.js",
"nix_prepublish": "scripts/compile.sh",
"test": "cake test",
"prepublish": "cake build"
},
"license": "MIT"
}