-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "@anephenix/rcg",
"version": "0.0.14",
"description": "React Component Generator",
"main": "index.js",
"scripts": {
"lint": "npx eslint .",
"cover": "npx nyc --reporter=lcov npm run test",
"prepare": "husky",
"prepare-patch-release": "npm run update-changelog && git add CHANGELOG.md && git commit -m \"Updated changelog\" && npm version patch",
"publish-patch-release": "npm run prepare-patch-release && git push origin master && git push --tags",
"test": "npx mocha test/**/*",
"update-changelog": "node scripts/update-changelog.js"
},
"keywords": [
"React",
"Component",
"Generator"
],
"bin": "./bin/rcg",
"author": "Paul Jensen <[email protected]>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.2.0",
"eslint": "^9.2.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-mocha": "^10.4.3",
"globals": "^15.2.0",
"husky": "^9.1.7",
"jsdoc": "^4.0.0",
"mocha": "^11.0.1",
"nyc": "^17.0.0",
"prettier": "^3.2.5"
},
"dependencies": {
"commander": "^13.0.0",
"to-case": "^2.0.0"
}
}