UNPKG

1.16 kBJSONView Raw
1{
2 "name": "koa-session",
3 "description": "Koa cookie session middleware",
4 "repository": "koajs/session",
5 "version": "4.7.1",
6 "keywords": [
7 "koa",
8 "middleware",
9 "session",
10 "cookie"
11 ],
12 "files": [
13 "index.js",
14 "lib"
15 ],
16 "devDependencies": {
17 "eslint": "3",
18 "eslint-config-egg": "3",
19 "istanbul": "0",
20 "koa": "1",
21 "mm": "^2.1.0",
22 "mocha": "3 ",
23 "should": "8",
24 "supertest": "2"
25 },
26 "license": "MIT",
27 "dependencies": {
28 "crc": "^3.4.4",
29 "debug": "^2.2.0",
30 "is-type-of": "^1.0.0",
31 "pedding": "^1.1.0",
32 "uid-safe": "^2.1.3"
33 },
34 "engines": {
35 "node": ">=4"
36 },
37 "publishConfig": {
38 "tag": "v4"
39 },
40 "scripts": {
41 "test": "npm run lint && NODE_ENV=test mocha --require should --reporter spec test/*.test.js",
42 "test-cov": "NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should test/*.test.js",
43 "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",
44 "lint": "eslint lib test index.js"
45 }
46}