-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
69 lines (69 loc) · 1.69 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
62
63
64
65
66
67
68
69
{
"name": "npm-bump",
"version": "0.0.34-pre",
"description": "A better `npm version major|minor|patch`",
"type": "module",
"homepage": "https://github.com/mgol/npm-bump",
"author": {
"name": "Michał Gołębiowski-Owczarek",
"email": "m.goleb@gmail.com"
},
"keywords": [
"version",
"versioning",
"bump",
"npm"
],
"bin": {
"npm-bump": "bin/npm-bump.js"
},
"main": "lib/cli.js",
"repository": {
"type": "git",
"url": "https://github.com/mgol/npm-bump.git"
},
"bugs": "https://github.com/mgol/npm-bump/issues",
"license": "MIT",
"files": [
"bin",
"lib"
],
"dependencies": {
"inquirer": "^9.1.4",
"minimist": "^1.2.7",
"semver": "^7.3.8",
"shell-quote": "^1.7.4"
},
"devDependencies": {
"eslint": "8.27.0",
"eslint-config-mgol": "0.0.48",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"prettier": "2.7.1"
},
"scripts": {
"prettier-check": "prettier --check \"**/*.{json,js,yml,yaml,md}\"",
"prettier-format": "prettier --write \"**/*.{json,js,yml,yaml,md}\"",
"spec-test": "node --test test/spec.js",
"test": "eslint . && npm run prettier-check && npm run spec-test"
},
"engines": {
"node": ">=12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,yml,yaml,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}