-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"name": "monorepo-template-cli",
"version": "0.2.3",
"repository": "git@github.com:hanrenguang/monorepo-template-cli.git",
"author": "Renguang Han",
"license": "MIT",
"bin": {
"monorepo-template-cli": "./src/cli.js"
},
"files": [
"src",
"templates"
],
"main": "./src/cli.js",
"dependencies": {
"cac": "^6.7.3",
"chalk": "^4.1.2",
"execa": "^5.1.1",
"inquirer": "^8.1.2"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"prettier": "2.3.2"
},
"scripts": {
"prepare": "husky install",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "git fetch origin --prune && yarn changelog && git add .",
"postversion": "git push && git push --tags"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"./src/*.js": [
"prettier --write",
"eslint"
]
},
"bugs": {
"url": "https://github.com/hanrenguang/monorepo-template-cli/issues"
},
"homepage": "https://github.com/hanrenguang/monorepo-template-cli#readme",
"engines": {
"node": ">=10.12.0"
}
}