forked from sequelize/sequelize-sscce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.38 KB
/
package.json
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-sscce",
"description": "SSCCE repository for Sequelize",
"version": "0.0.0-development",
"engines": {
"node": ">=10.0.0"
},
"private": true,
"license": "MIT",
"dependencies": {
"chai": "^4",
"chai-as-promised": "^7",
"chai-datetime": "^1",
"chalk": "^2",
"cross-env": "^5",
"fs-jetpack": "^2",
"is-plain-object": "^3",
"json-stringify-safe": "^5",
"lodash.defaults": "^4",
"sequelize": "^6",
"sinon": "^9",
"sinon-chai": "^3"
},
"scripts": {
"start": "cross-env LOCAL_SSCCE=true DIALECT=sqlite node setup/runner.js",
"ts-prep": "del-cli ts-dist && tsc && node setup/ts-setup.js",
"ts": "npm run ts-prep && cross-env LOCAL_TS_RUN=true npm start",
"do-replace": "node setup/lib-replacements.js --do",
"undo-replace": "node setup/lib-replacements.js --undo",
"ci": "node setup/runner.js",
"lint": "eslint ."
},
"devDependencies": {
"@types/bluebird": "*",
"@types/chai": "^4",
"@types/chai-as-promised": "^7",
"@types/chai-datetime": "^0.0.36",
"@types/node": "^10",
"@types/sinon": "^9",
"@types/sinon-chai": "^3",
"@types/validator": "*",
"@typescript-eslint/eslint-plugin": "2.16.0",
"@typescript-eslint/parser": "2.16.0",
"del-cli": "^3",
"eslint": "^6",
"eslint-plugin-node": "^10",
"sqlite3": "^4",
"typescript": "~4.1"
}
}