-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.57 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "typeorm-codebase-sync",
"version": "1.0.0",
"description": "Automatically update your codebase to add migrations, entities and subscribers to your `data-source.ts` file",
"main": "dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"package.json",
"README.md"
],
"bin": {
"typeorm-codebase-sync": "./dist/cli.js"
},
"scripts": {
"prepare": "[ $CI = true ] || [ -d '.husky/_' ] || husky install",
"prebuild": "rm -rf ./dist ./tsconfig.tsbuildinfo",
"build": "tsc --build tsconfig.json --force",
"prewatch": "rm -rf ./dist ./tsconfig.tsbuildinfo",
"watch": "tsc --build tsconfig.json --watch --force",
"test": "npm run test:typescript && npm run test:eslint && npm run test:mocha",
"test:mocha": "mocha --bail",
"test:typescript": "tsc --build tsconfig.json --dry --force",
"test:eslint": "eslint --ext .js --ext .ts .",
"coverage": "c8 mocha",
"format": "npm run test:eslint -- --fix",
"clean": "rm -rf ./node_modules ./dist ./tsconfig.tsbuildinfo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giladgd/typeorm-codebase-sync.git"
},
"keywords": [
"typeorm",
"data-source.ts",
"data-source",
"DataSource",
"typescript",
"cli",
"ts",
"codebase",
"code",
"ast",
"files",
"edit",
"sync"
],
"engines": {
"node": ">=16.14.0"
},
"author": "Gilad S.",
"license": "MIT",
"bugs": {
"url": "https://github.com/giladgd/typeorm-codebase-sync/issues"
},
"homepage": "https://github.com/giladgd/typeorm-codebase-sync#readme",
"dependencies": {
"@types/node": "^17.0.23",
"chalk": "^5.0.1",
"glob": "^7.2.0",
"tslib": "^2.3.1",
"yargs": "^17.4.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"c8": "^7.11.0",
"c8-as-nyc": "^1.0.4",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "github:giladgd/eslint-plugin-node#dev/giladgd/fixImportExtentionFixingInTypeScript",
"husky": "^7.0.4",
"mocha": "^9.2.2",
"semantic-release": "^19.0.2",
"ts-node": "^10.7.0"
},
"peerDependencies": {
"typeorm": "^0.3.4",
"typescript": "^4.6.3"
}
}