UNPKG

1.1 kBJSONView Raw
1{
2 "name": "egg-session",
3 "version": "2.1.0",
4 "description": "session plugin for egg",
5 "eggPlugin": {
6 "name": "session"
7 },
8 "files": [
9 "config",
10 "app",
11 "app.js"
12 ],
13 "repository": {
14 "type": "git",
15 "url": "git@github.com:eggjs/egg-session.git"
16 },
17 "keywords": [
18 "egg",
19 "egg-plugin",
20 "eggPlugin",
21 "session",
22 "cookie"
23 ],
24 "dependencies": {
25 "koa-session": "^4.0.0"
26 },
27 "devDependencies": {
28 "autod": "^2.7.1",
29 "egg": "^1.0.0-rc.1",
30 "egg-bin": "^2.2.3",
31 "egg-ci": "^1.2.0",
32 "egg-mock": "^3.0.1",
33 "egg-redis": "^1.0.1",
34 "eslint": "^3.16.1",
35 "eslint-config-egg": "^3.2.0",
36 "mz-modules": "^1.0.0",
37 "supertest": "^3.0.0"
38 },
39 "engines": {
40 "node": ">=6.0.0"
41 },
42 "scripts": {
43 "lint": "eslint .",
44 "test": "npm run lint -- --fix && egg-bin test",
45 "test-local": "egg-bin test",
46 "cov": "egg-bin cov",
47 "ci": "npm run lint && npm run cov",
48 "autod": "autod"
49 },
50 "ci": {
51 "version": "6, 7",
52 "services": "redis-server",
53 "type": "travis"
54 },
55 "author": "dead_horse"
56}