-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "@qusito/json-enum-generator",
"version": "1.0.2",
"description": "Generate a TypeScript enum from JSON file",
"main": "dist/cli.js",
"keywords": [
"TypeScript",
"JSON",
"enum",
"Generate"
],
"scripts": {
"dev": "ts-node lib/cli.ts",
"build": "tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Qusito/json-enum-generator.git"
},
"bin": {
"json-enum-generator": "dist/cli.js"
},
"author": {
"email": "jules@qusito.nl",
"name": "Jules Kreutzer | Qusito",
"url": "https://qusito.nl"
},
"license": "Unlicense",
"bugs": {
"url": "https://github.com/Qusito/json-enum-generator/issues"
},
"homepage": "https://github.com/Qusito/json-enum-generator#readme",
"devDependencies": {
"@types/ejs": "^3.0.5",
"@types/node": "^14.14.2",
"@types/yargs": "^15.0.9",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"ejs": "^3.1.5",
"yargs": "^16.1.0"
},
"private": false
}