-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
83 lines (83 loc) · 2.16 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
{
"name": "enum-converter",
"version": "1.3.7",
"description": "Convert Enums from one language to another",
"keywords": [
"enum-converter",
"enum",
"enums",
"converter",
"transpiler",
"enumc"
],
"author": "Nitzan.o < [email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nitzano/enum-converter.git"
},
"bugs": {
"url": "https://github.com/nitzano/enum-converter/issues"
},
"main": "./build/index.js",
"typings": "./build/index.d.ts",
"bin": {
"enumc": "./build/cli/cli.js"
},
"files": [
"CHANGELOG",
"README.md",
"LICENSE",
"build/"
],
"scripts": {
"build:prod": "yarn run build -p tsconfig.prod.json",
"build:watch": "yarn run build -w",
"build": "tsc",
"clean:soft": "rimraf build/*",
"clean": "rimraf build",
"cli": "ts-node ./src/cli/cli.ts",
"debug": "node --inspect-brk=0.0.0.0:9229 --nolazy ./build/src/cli/cli.js",
"dev": "yarn run build:watch",
"lint:fix": "yarn lint --fix",
"lint": "tslint -p tsconfig.json",
"prebuild": "yarn run clean:soft",
"predebug": "yarn run build",
"release": "semantic-release",
"test:debug": "node --inspect-brk=0.0.0.0 ./node_modules/.bin/jest -i",
"test:watch": "jest --watch",
"test": "jest"
},
"dependencies": {
"antlr4ts": "^0.4.1-alpha.0",
"change-case": "4.1.2",
"estree-walker": "2.0.2",
"filbert": "0.1.20",
"java-ast": "^0.1.0",
"lodash": "^4.17.11",
"lower-case": "^2.0.2",
"swap-case": "^2.0.2",
"title-case": "^3.0.3",
"tmp": "0.2.1",
"typescript": "^4.3.5",
"upper-case": "^2.0.2",
"yargs": "17.2.1"
},
"devDependencies": {
"@types/estree": "^0.0.50",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.171",
"@types/node": "^17.0.8",
"@types/tmp": "^0.2.1",
"@types/yargs": "^17.0.2",
"jest": "^27.0.6",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"semantic-release": "^18.0.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0"
}
}