-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 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
48
49
50
{
"name": "sequelize-example",
"version": "1.0.0",
"description": "The egg example project that uses egg-sequelize plugin.",
"private": true,
"dependencies": {
"egg": "^1.4.0",
"egg-sequelize": "^3.0.1",
"pg": "^6.2.4",
"pg-hstore": "^2.3.2"
},
"devDependencies": {
"autod": "^2.8.0",
"autod-egg": "^1.0.0",
"egg-bin": "^3.6.0",
"egg-ci": "^1.7.0",
"egg-mock": "^3.7.2",
"eslint": "^4.0.0",
"eslint-config-egg": "^4.2.1",
"lodash": "^4.17.4",
"mocha": "^3.4.2",
"supertest": "^3.0.0",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"start": "node index.js",
"dev": "egg-bin dev",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov",
"autod": "autod",
"migrate:new": "egg-sequelize migration:create",
"migrate:up": "egg-sequelize db:migrate",
"migrate:down": "egg-sequelize db:migrate:undo"
},
"ci": {
"version": "6"
},
"repository": {
"type": "git",
"url": "iyuq/sequelize-example"
},
"author": "Qi Yu <njuyuqi@gmail.coom>",
"license": "MIT"
}