forked from for-GET/bin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1 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
{
"name": "hyperrest-bin",
"description": "A simple HTTP service with controlled behaviour",
"keywords": [
"http",
"rest",
"service",
"headers",
"status",
"json"
],
"version": "0.1.2",
"repository": {
"type": "git",
"url": "git://github.com/andreineculau/hyperrest-bin.git"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bin": {
"hyperrest-bin": "bin/cli.coffee"
},
"scripts": {
"prepublish": "make prepublish",
"test": "make test"
},
"dependencies": {
"express": "~3.1.2",
"js2xmlparser": "~0.1.0",
"know-your-http-well": "~0.1.0",
"lodash": "~1.3.1",
"xml2js": "~0.2.6"
},
"devDependencies": {
"chai": "~1.7.0",
"coffee-script": "~1.6.3",
"coffeelint": "~0.5.6",
"growl": "~1.7.0",
"lodash": "~1.3.1",
"mocha": "~1.11.0",
"testem": "~0.2.98"
},
"publishConfig": {
"bin": {
"hyperrest-bin": "bin/cli.js"
}
}
}