-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.73 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@_nu/cli",
"version": "1.1.4",
"description": "🛠️ Standard Tooling for nu-system component development",
"main": "index.js",
"homepage": "https://github.com/nu-system/nu-cli",
"bugs": {
"url": "https://github.com/nu-system/nu-cli/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:nu-system/nu-cli.git"
},
"author": "ziven27",
"license": "MIT",
"bin": {
"nu-cli": "bin/index.js"
},
"files": [
"bin",
"src",
"template"
],
"keywords": [
"!ui",
"nu-system",
"cli"
],
"scripts": {
"cz": "git add . && git cz",
"pub": "npm publish --access public",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"commitizenInit": "commitizen init cz-conventional-changelog --yarn --dev --exact",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,css,md,json}'",
"prepublishOnly": "npm run log && npm run cz && git push"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,tsx,ts,less,css,md,json}": [
"prettier --write",
"git add ."
]
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"chalk": "^4.0.0",
"commander": "^5.0.0",
"commitizen": "^4.0.3",
"conventional-changelog-cli": "^2.0.23",
"cz-conventional-changelog": "3.1.0",
"fs-extra": "^9.0.0",
"husky": "^4.2.5",
"inquirer": "^7.1.0",
"lint-staged": "^10.1.3",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^6.0.0",
"prettier": "^1.19.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}