-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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": "lark-router",
"version": "2.3.1",
"description": "An koa route initialization and configuration module.",
"engines": {
"node": ">=8.9"
},
"scripts": {
"lint": "./node_modules/.bin/eslint index.js src/**",
"test:clear-env": "npm unlink lark-router && npm unlink && npm install",
"test:prepare-env": "npm link && npm link lark-router",
"pretest": "npm run test:clear-env && npm run lint && npm run test:prepare-env",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should --recursive test",
"posttest": "npm run test:clear-env"
},
"repository": {
"type": "git",
"url": "https://github.com/larkjs/lark-router"
},
"keywords": [
"router",
"koa"
],
"author": "Sun Haohao",
"license": "MIT",
"bugs": {
"url": "https://github.com/larkjs/lark-router/issues"
},
"homepage": "https://github.com/larkjs/lark-router",
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.4",
"method": "^2.0.0",
"methods": "^1.1.2",
"path-to-regexp": "^2.1.0",
"switch-case": "^2.1.4",
"vi-misc": "^1.13.2"
},
"devDependencies": {
"eslint": "^4.15.0",
"eslint-plugin-spellcheck": "0.0.8",
"istanbul": "^1.1.0-alpha.1",
"koa": "^2.4.1",
"mocha": "^3.4.2",
"should": "^11.2.1",
"supertest": "^3.0.0"
}
}