-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 KB
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
{
"name": "nodesimplecli",
"version": "3.0.7",
"description": "Utility to create command-line programs",
"main": "build/index.js",
"scripts": {
"build": "rimraf build && tsc",
"test": "jest",
"dev": "nodemon -e js,ts -w ./src --exec \"npm run build && npm run test\"",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rubinder25/NodeSimpleCli.git"
},
"author": "Rubinder Singh",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rubinder25/NodeSimpleCli/issues"
},
"homepage": "https://github.com/Rubinder25/NodeSimpleCli#readme",
"devDependencies": {
"@types/cross-spawn": "^6.0.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.34",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"chalk": "^3.0.0",
"cross-spawn": "^7.0.1"
},
"keywords": [
"command line",
"cli",
"parser",
"option",
"flag"
]
}