forked from sequelize/sequelize-sscce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.83 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
51
52
53
54
55
56
57
{
"private": true,
"engines": {
"node": ">=10.0.0"
},
"type": "commonjs",
"license": "MIT",
"dependencies": {
"chai": "^4",
"chai-as-promised": "^7",
"chai-datetime": "^1",
"chalk": "^4.1.2",
"cross-env": "^7",
"fs-jetpack": "^4",
"sequelize": "^6",
"@sequelize/core": "^7.0.0-alpha.10",
"sinon": "^13",
"sinon-chai": "^3"
},
"scripts": {
"_test": "ts-node setup/runner.ts",
"test:sqlite": "cross-env DIALECT=sqlite npm run _test",
"test:postgres": "cross-env DIALECT=postgres npm run _test",
"test:postgres-native": "cross-env DIALECT=postgres-native npm run _test",
"test:mariadb": "cross-env DIALECT=mariadb npm run _test",
"test:mysql": "cross-env DIALECT=mysql npm run _test",
"test:mssql": "cross-env DIALECT=mssql npm run _test",
"start:mariadb": "bash setup/mariadb/10.3/start.sh",
"start:mysql": "bash setup/mysql/8.0/start.sh",
"start:postgres": "bash setup/postgres/10/start.sh",
"start:mssql": "bash setup/mssql/2019/start.sh",
"stop:mariadb": "bash setup/mariadb/10.3/stop.sh",
"stop:mysql": "bash setup/mysql/8.0/stop.sh",
"stop:postgres": "bash setup/postgres/10/stop.sh",
"stop:mssql": "bash setup/mssql/2019/stop.sh",
"do-replace": "node setup/lib-replacements.ts --do",
"undo-replace": "node setup/lib-replacements.ts --undo",
"lint": "eslint . --fix"
},
"devDependencies": {
"@ephys/eslint-config-typescript": "^14.1.1",
"@types/chai": "^4",
"@types/chai-as-promised": "^7",
"@types/chai-datetime": "^0.0.37",
"@types/lodash": "^4.14.178",
"@types/node": "^10",
"@types/sinon": "^10",
"@types/sinon-chai": "^3",
"@types/validator": "*",
"del-cli": "^4",
"eslint": "^8",
"lodash": "^4.17.21",
"sqlite3": "^5",
"ts-node": "^10.4.0",
"typescript": "~4.5"
}
}