-
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.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 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": "keymanagement-cli",
"version": "0.1.0",
"description": "Template project for creating node CLI programs using Typescript",
"main": "./dist/index.js",
"bin": {
"keyman": "./bin/keyman"
},
"scripts": {
"build": "npm run build:clean && npm run build:compile",
"watch": "npm run build:clean && npm run build:watch",
"build:compile": "tsc",
"build:watch": "tsc -w",
"build:clean": "rimraf ./dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justinneff/typescript-cli-template.git"
},
"keywords": [
"typescript",
"cli",
"template"
],
"author": "Justin Neff <neffjustin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/justinneff/typescript-cli-template/issues"
},
"homepage": "https://github.com/justinneff/typescript-cli-template#readme",
"devDependencies": {
"@types/node": "^14.11.5",
"@typescript-eslint/eslint-plugin": "4.4.0",
"@typescript-eslint/parser": "4.4.0",
"eslint": "7.10.0",
"eslint-config-justinneff-ts": "2.1.1",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-prettier": "3.1.4",
"prettier": "2.1.2",
"rimraf": "^3.0.2",
"typescript": "^3.9.7"
},
"dependencies": {
"commander": "^6.1.0"
}
}