-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.21 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
56
{
"name": "for-get-server",
"description": "Reference implementation of an HTTP server running the for-GET Machine",
"keywords": [
"connect",
"express",
"middleware",
"webmachine",
"http",
"decision",
"diagram",
"fsm"
],
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git://github.com/for-GET/machine-server.git"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bin": {
"hyperrest-server": "bin/server.coffee"
},
"scripts": {
"prepublish": "make prepublish",
"test": "make test"
},
"dependencies": {
"amdefine": "~0.0.4",
"otw": "git://github.com/andreineculau/otw.git",
"know-your-http-well": "~0.1.2",
"for-get-machine": "git://github.com/for-GET/machine.git"
},
"optionalDependencies": {
"coffee-script": "~1.6.3"
},
"devDependencies": {
"chai": "~1.7.2",
"coffee-script": "~1.6.3",
"coffeelint": "~0.5.6",
"growl": "~1.7.0",
"lodash": "~1.3.1",
"mocha": "~1.12.0",
"testem": "~0.3.18"
},
"publishConfig": {
"bin": {
"for-get-machine-server": "bin/server.js"
},
"optionalDependencies": {}
}
}