-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "dddl",
"version": "0.2.1",
"description": "dddl generates test Data from DDL",
"main": "dist/index.js",
"files": [
"dist/"
],
"type": "module",
"scripts": {
"esbuild:lib": "ts-node -P ./script/tsconfig.json ./script/build.ts",
"build:lib": "tsc -p ./src/tsconfig.json --emitDeclarationOnly && npm run esbuild:lib",
"watch:lib": "chokidar \"src/**/*\" -c \"npm run esbuild:lib\" --initial --debounce 5000",
"build:demo": "cd demo && npm install && npm run build",
"build": "npm run build:lib && npm run build:demo",
"dev:demo": "cd demo && npm install && npm run dev",
"start": "concurrently -p '{time} {name}' -t 'HH:mm:ss.SSS' -c green,yellow npm:watch:lib npm:dev:demo",
"test": "jest",
"test:upd": "npm run test -- -u",
"cov": "npm run test -- --coverage",
"cov:upd": "npm run cov -- -u",
"docgen": "typedoc"
},
"keywords": [
"test",
"table",
"data",
"generator",
"ddl",
"sql",
"database",
"db"
],
"author": "kena0ki",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^7.6.0",
"esbuild": "^0.16.10",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.23",
"typescript": "^4.9.4",
"yargs": "^17.6.2"
}
}