-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.12 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
{
"name": "diflow",
"version": "1.0.1",
"bin": {
"diflow": "./dist/diflow.js"
},
"scripts": {
"build": "tsc",
"test": "npm run build && jest --runInBand",
"test:ci": "jest --runInBand --json --outputFile=test-result.json --testLocationInResults --detectOpenHandles --forceExit",
"test:init": "yarn tsc && node dist/runtest init",
"test:add": "yarn tsc && node dist/runtest add",
"test:dbgate": "yarn tsc && node dist/diflow sync -r https://github.com/dbgate/dbgate-diflow-config.git -b master --skip-push --clear",
"test:dbgate:push": "yarn tsc && node dist/diflow sync -r https://github.com/dbgate/dbgate-diflow-config.git -b master --clear"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/lodash": "^4.17.15",
"commander": "^13.1.0",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"minimatch": "^10.0.1",
"rimraf": "^6.0.1"
}
}