-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.17 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": "koa-resourcer-docs",
"version": "0.4.0",
"description": "Simple route documentation for koa-resourcer.",
"main": "docs.js",
"license": "MIT",
"readmeFilename": "README.md",
"keywords": [
"koa",
"koa-joi-router",
"koa-resourcer",
"resource",
"router",
"documentation"
],
"homepage": "https://github.com/koajs/resourcer-docs",
"repository": {
"type": "git",
"url": "https://github.com/koajs/resourcer-docs.git"
},
"bugs": {
"url": "https://github.com/koajs/resourcer-docs/issues"
},
"engines": {
"node": ">= 0.12.0",
"iojs": ">= 1.0.0"
},
"dependencies": {
"dot": "1.0.3",
"eslint": "^1.2.0",
"eslint-config-pebble": "^1.2.0",
"eslint-plugin-standard": "^1.2.0",
"koa": "^0.21.0",
"koa-joi-router": "^2.0.0"
},
"devDependencies": {
"koa-resourcer": "^1.0.0",
"istanbul-harmony": "^0.3.0",
"co-mocha": "^1.0.0",
"co-supertest": "^0.0.8",
"mocha": "^2.0.0",
"supertest": "^0.15.0"
},
"scripts": {
"test": "make test",
"test-cov": "make test-cov"
},
"eslintConfig": {
"extends": [
"pebble"
],
"env": {
"node": true
}
}
}