-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.33 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": "@pixelygroup/commit-checker",
"version": "1.0.8",
"description": "Bumps version in package.json and package-lock.json files based on passed argument",
"repository": "github:pixelygroup/commit-checker.git",
"bugs": {
"url": "https://github.com/pixelygroup/commit-checker/issues"
},
"homepage": "https://github.com/pixelygroup/commit-checker#readme",
"main": "bin/index.js",
"bin": {
"px-commit": "./bin/index.js"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"version-x": "version-x",
"version-major": "version-x -m",
"version-minor": "version-x -i",
"version-patch": "version-x -p"
},
"keywords": [
"git",
"JIRA",
"commit validation",
"CI",
"CD",
"pixely group"
],
"author": "Lubos Krystynek",
"license": "MIT",
"dependencies": {
"prompts": "^2.3.2",
"yargs": "^16.1.0"
},
"engines": {
"node": ">=8.3.0"
},
"devDependencies": {
"@pixelygroup/eslint-config-px": "^0.1.2",
"@pixelygroup/version-x": "^0.2.1",
"eslint": "^7.11.0",
"eslint-plugin-jsdoc": "^30.7.3",
"eslint-plugin-node": "^11.1.0",
"husky": "^3.0.8",
"lint-staged": "^9.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}