-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.54 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": "generator-jarvis",
"version": "0.1.1",
"description": "Create code from templates for you, sir.",
"repository": {
"url": "https://github.com/bruceeewong/generator-jarvis",
"type": "github"
},
"bugs": {
"url": "https://github.com/bruceeewong/generator-jarvis"
},
"keywords": [
"yeoman-generator"
],
"author": "Bruski <[email protected]>",
"license": "MIT",
"main": "generators/index.js",
"files": [
"generators",
"README.md"
],
"scripts": {
"test": "jest",
"commit": "cz",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prettier": "prettier --write --ignore-unknown .",
"prepare": "husky install",
"version": "npm run changelog && git add .",
"postversion": "git push && git push --tags",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"chalk": "^4.1.1",
"cross-spawn": "^7.0.3",
"lodash": "^4.17.21",
"nodegit": "^0.27.0",
"rimraf": "^3.0.2",
"yeoman-generator": "^5.3.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2"
},
"lint-staged": {
"*.js": "npm run lint:fix",
"*.{js,md,json}": "npm run prettier"
}
}