forked from koajs/session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.17 KB
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
{
"name": "koa-session",
"description": "Koa cookie session middleware",
"repository": "koajs/session",
"version": "4.8.1",
"keywords": [
"koa",
"middleware",
"session",
"cookie"
],
"files": [
"index.js",
"lib"
],
"devDependencies": {
"eslint": "3",
"eslint-config-egg": "3",
"istanbul": "0",
"koa": "1",
"mm": "^2.1.0",
"mocha": "3",
"mz-modules": "^2.0.0",
"should": "8",
"supertest": "2"
},
"license": "MIT",
"dependencies": {
"crc": "^3.4.4",
"debug": "^2.2.0",
"is-type-of": "^1.0.0",
"pedding": "^1.1.0",
"uid-safe": "^2.1.3"
},
"engines": {
"node": ">=4"
},
"publishConfig": {
"tag": "latest-4"
},
"scripts": {
"test": "npm run lint && NODE_ENV=test mocha --require should --reporter spec test/*.test.js",
"test-cov": "NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should test/*.test.js",
"test-travis": "npm run lint && NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require should test/*.test.js",
"lint": "eslint lib test index.js"
}
}