-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.22 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": "eojuk",
"version": "0.10.5",
"description": "",
"keywords": [
"mysql",
"postgresql",
"orm",
"converter"
],
"main": "./dist/lib",
"typings": "./dist/",
"bin": {
"eojuk": "./dist/main.js"
},
"scripts": {
"build": "tsc",
"build:test": "tsc && npm link --force",
"start": "tsc | node ./dist/main",
"debug": "tsc | node --inspect ./dist/main",
"dev": "tsc --watch -p ./src | node --inspect ./dist/main",
"watch": "tsc --watch "
},
"repository": {
"type": "git",
"url": "git+https://github.com/myyrakle/eojuk.git"
},
"author": {
"name": "myyrakle",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/myyrakle/eojuk/issues"
},
"homepage": "https://github.com/myyrakle/eojuk#readme",
"dependencies": {
"@angular-devkit/core": "^12.1.4",
"camelcase": "^6.2.0",
"commander": "^7.2.0",
"node-sql-parser": "^3.6.1",
"pgsql-ast-parser": "^8.1.1",
"pluralize": "^8.0.0",
"snake-case": "^3.0.4"
},
"devDependencies": {
"@types/node": "^12.20.14",
"@types/pluralize": "0.0.29",
"@types/prettier": "^1.19.1",
"tslint": "^5.20.1",
"typescript": "^4.3.2"
}
}