-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "rncez",
"version": "1.1.6",
"description": "Custom tool for generating react component in CLI",
"bin": {
"rncez": "bin/Starter.js"
},
"main": "bin/Starter.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test-dummy": "bin/Starter.js create dummy",
"husky": "husky install && chmod ug+x .husky/*"
},
"repository": {
"type": "git",
"url": "[email protected]:MyrrdinAlsatian/rncez.git"
},
"keywords": [
"cli",
"react",
"build-tools",
"NextJs"
],
"author": "Stephan Jean-Baptiste",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.1",
"commander": "^7.2.0",
"deep-keys": "^0.5.0",
"fs-extra": "^9.1.0",
"inquirer": "^8.2.5",
"lodash": "^4.17.21",
"replace": "^1.2.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/cz-commitlint": "^17.0.3",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.9.0",
"husky": "^8.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
}
}