-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "cmdconfig",
"version": "1.0.4",
"description": "Simple configuration CLI generator for nodejs",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "minidonut/cmdconfig",
"author": {
"name": "Karl Saehun Chung",
"email": "[email protected]"
},
"scripts": {
"build": "tsc",
"test": "NODE_ENV=test ts-node ./node_modules/.bin/jest",
"lint": "eslint . --ext .js,.ts"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@types/prompts": "^2.0.6",
"@types/rewire": "^2.5.28",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"jest": "^26.0.1",
"rewire": "^5.0.0",
"ts-jest": "^26.1.0",
"ts-node": "^8.9.1",
"typescript": "^3.8.3"
},
"bin": {
"cmdconfig": "dist/prompt.js"
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"prompts": "^2.3.2",
"yaml": "^1.9.2",
"yargs": "^15.3.1"
},
"keywords": [
"config",
"configuration",
"cli",
"command-line"
]
}