-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
52
53
54
55
56
57
58
59
{
"name": "cross-cmd",
"version": "0.0.0-semantically-released",
"description": "Cross-platform CLI commands",
"main": "./bin/index.js",
"scripts": {
"lint": "prettier --write src/ test/",
"test": "mocha || true",
"validate": "npm-run-all --parallel lint test && npm run generateCommandsFile && git add ./src/",
"commit": "git-cz",
"generateCommandsFile": "node . generateCommandsFile",
"install": "npm run generateCommandsFile",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/dillionmegida/cross-cmd.git"
},
"keywords": [
"cli",
"cross-cli",
"unix",
"win32",
"cross-commands",
"cross-platform"
],
"author": "Dillion Megida <dillionmegida@gmail.com>",
"license": "MIT",
"files": [
"src",
"bin"
],
"bin": {
"cross-cmd": "./bin/index.js"
},
"bugs": {
"url": "https://github.com/dillionmegida/cross-cmd/issues"
},
"homepage": "https://github.com/dillionmegida/cross-cmd#readme",
"devDependencies": {
"chai": "^4.2.0",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.1.0",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"semantic-release": "^17.0.6",
"validate-commit-msg": "^2.14.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run validate",
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}