-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "koa-session",
"description": "Koa cookie session middleware with external store support",
"repository": "koajs/session",
"version": "6.4.0",
"keywords": [
"koa",
"middleware",
"session",
"cookie"
],
"files": [
"index.js",
"lib"
],
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "3",
"eslint-config-egg": "3",
"istanbul": "0",
"koa": "2",
"mm": "^2.1.0",
"mocha": "^5.2.0",
"mz-modules": "^2.0.0",
"pedding": "^1.1.0",
"should": "8",
"supertest": "^3.3.0",
"uid-safe": "^2.1.3"
},
"license": "MIT",
"dependencies": {
"crc": "^3.8.0",
"debug": "^4.3.3",
"is-type-of": "^1.2.1",
"uuid": "^8.3.2"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "npm run lint && NODE_ENV=test mocha --exit --require should --reporter spec test/*.test.js",
"test-cov": "NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --exit --require should test/*.test.js",
"ci": "npm run lint && NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --exit --require should test/*.test.js",
"lint": "eslint lib test index.js"
}
}