-
Notifications
You must be signed in to change notification settings - Fork 731
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 945 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 945 Bytes
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
{
"name": "sequelize-example",
"version": "1.0.0",
"description": "The egg example project that uses egg-sequelize plugin.",
"private": true,
"dependencies": {
"co": "^4.6.0",
"egg": "^2.2.0",
"egg-sequelize": "^3.1.0"
},
"devDependencies": {
"egg-bin": "^4.3.7",
"egg-mock": "^3.14.0",
"lodash": "^4.17.4"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"dev": "egg-bin dev",
"test": "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"
}