This repository was archived by the owner on Nov 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.16 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.16 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
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
84
85
86
87
88
{
"name": "simple-node-cli-starter",
"version": "0.0.0-development",
"description": "Starter project for creating interactive node command line interfaces",
"main": "src/cli.js",
"author": "Tobias Görg",
"license": "MIT",
"private": false,
"preferGlobal": true,
"bin": "./src/cli.js",
"repository": {
"type": "git",
"url": "https://github.com/fen89/simple-node-cli-starter"
},
"scripts": {
"start": "nodemon --exec ts-node -- ./src/cli.ts",
"ts-node": "ts-node ./src/cli.ts",
"build": "tsc",
"watch": "tsc --watch",
"lint": "lint-staged",
"precommit": "lint-staged",
"commit": "git-cz",
"commitmsg": "commitlint -e $GIT_PARAMS",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/git"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint --edit"
}
},
"dependencies": {
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/git": "^7.0.5",
"@semantic-release/npm": "^5.1.1",
"colors": "^1.3.2",
"commander": "^3.0.0",
"core-js": "^3.0.0",
"figlet": "^1.2.1",
"inquirer": "^7.0.0",
"opn": "^5.4.0"
},
"devDependencies": {
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"@types/colors": "1.2.1",
"@types/commander": "2.12.2",
"@types/core-js": "2.5.0",
"@types/inquirer": "0.0.44",
"@types/opn": "5.1.0",
"cz-conventional-changelog": "3.0.2",
"husky": "3.0.5",
"lint-staged": "9.4.0",
"nodemon": "1.19.2",
"prettier": "1.18.2",
"semantic-release": "15.13.24",
"travis-deploy-once": "5.0.11",
"ts-node": "8.4.1",
"typescript": "3.6.3"
}
}