-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.21 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
{
"name": "engines-checker",
"version": "0.0.2",
"description": "outdated versions checker for Node.js engines",
"engines": {
"node": ">=10"
},
"bin": "./bin/engines-checker",
"main": "./lib/index.js",
"scripts": {
"publish:major": "git checkout master && git pull && npm version major && npm run build && git add . && git commit -m 'publish major update' && git push && git push --tags && npm publish",
"publish:minor": "git checkout master && git pull && npm version minor && npm run build && git add . && git commit -m 'publish minor update' && git push && git push --tags && npm publish",
"publish:patch": "git checkout master && git pull && npm version patch && npm run build && git add . && git commit -m 'publish patch update' && git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RyoNkmr/engines-checker.git"
},
"author": "Ryonkmr",
"license": "MIT",
"bugs": {
"url": "https://github.com/RyoNkmr/engines-checker/issues"
},
"keywords": [
"engines",
"version"
],
"homepage": "https://github.com/RyoNkmr/engines-checker#readme",
"dependencies": {
"chalk": "^4.0.0",
"semver": "^7.3.2"
}
}