-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 954 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
{
"name": "koa-router-version",
"version": "1.2.0",
"description": "Semantic Versioning routing for Koa",
"repository": "https://github.com/Lansoweb/koa-router-version",
"author": "Leandro Silva <[email protected]>",
"license": "MIT",
"private": false,
"main": "index.js",
"dependencies": {
"semver": "^5.4.1"
},
"engines": {
"node": ">=7.6.0"
},
"keywords": [
"koa",
"koa2",
"koa-router",
"semver",
"versioning",
"api"
],
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"eslint": "^4.7.0",
"istanbul": "^0.4.5",
"koa": "^2.3.0",
"koa-router": "^7.2.1",
"mocha": "^3.5.3",
"supertest": "^3.0.0"
},
"scripts": {
"test": "NODE_PATH=. NODE_ENV=test mocha",
"coverage": "NODE_PATH=. NODE_ENV=test istanbul cover node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
}
}