-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 895 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 895 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"author": "Stephen Sugden <stephen@betsmartmedia.com> (www.betsmartmedia.com)",
"name": "diversion",
"description": "A simple proxy for API versioning",
"version": "0.4.6",
"bin": {
"diversion": "server.js"
},
"repository": {
"type": "git",
"url": "git://github.com/BetSmartMedia/diversion.git"
},
"main": "lib/diversion",
"files": [
"lib",
"server.js",
"example_config.json",
"Makefile",
"README.md",
"test",
"public"
],
"engines": {
"node": ">=0.4.12"
},
"dependencies": {
"bouncy": "~1.3.1",
"semver": "1.0.12",
"node-uuid": "~1.3.1",
"lazorse": "~0.6.0",
"sockjs": "~0.2.0"
},
"devDependencies": {
"coffee-script": "~1.2.0",
"mocha": "~1.0.0"
},
"scripts": {
"start": "node server.js",
"test": "make test",
"prepublish": "make test"
},
"optionalDependencies": {}
}