-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "surface",
"version": "0.8.1",
"description": "A tiny middleware of RESTful API for koa.",
"main": "lib/surface.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec --require should test/* --bail",
"test-cov": "NODE_ENV=test node node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -u exports --require should test/* --bail",
"test-travis": "NODE_ENV=test node node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -u exports --require should test/* --bail"
},
"repository": {
"type": "git",
"url": "https://github.com/zedgu/surface.git"
},
"keywords": [
"RESTful",
"API",
"koa",
"middleware",
"JSON",
"XML",
"HTTP"
],
"author": "zedgu",
"license": "MIT",
"bugs": {
"url": "https://github.com/zedgu/surface/issues"
},
"homepage": "https://github.com/zedgu/surface",
"dependencies": {
"debug": "^2.0.0",
"js2xmlparser": "^1.0.0",
"koa-ovenware": "^0.3.1",
"methods": "^1.0.1"
},
"devDependencies": {
"co-body": "^4.0.0",
"istanbul-harmony": "^0.3.16",
"koa": "^1.1.2",
"mocha": "^2.3.4",
"should": "^8.1.1",
"superagent-xml2jsparser": "^0.1.1",
"supertest": "^1.1.0"
},
"engines": {
"node": ">= 0.11.9"
}
}