-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 975 Bytes
/
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
{
"name": "hyperrest-bin",
"description": "A simple HTTP service with controlled behaviour",
"keywords": [
"http",
"rest",
"service",
"headers",
"status",
"json"
],
"version": "0.2.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": {
"test": "make test"
},
"dependencies": {
"express": "~4.10.1",
"js2xmlparser": "~0.1.5",
"know-your-http-well": "~0.2.0",
"lodash": "~2.4.1",
"xml2js": "~0.4.4",
"cookie-parser": "~1.3.3"
},
"devDependencies": {
"chai": "~1.9.2",
"coffee-script": "~1.7.1",
"coffeelint": "~1.6.1",
"mocha": "~1.21.5",
"testem": "~0.6.22"
},
"publishConfig": {
"bin": {
"hyperrest-bin": "bin/cli.js"
}
}
}