-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
81 lines (81 loc) · 2.01 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@jsdevtools/version-bump-prompt",
"version": "6.1.0",
"description": "Automatically (or with prompts) bump your version number, commit changes, tag, and push to Git",
"keywords": [
"version",
"bump",
"npm",
"node",
"bower",
"package",
"git",
"tag",
"push",
"prompt"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://jstools.dev/version-bump-prompt",
"repository": {
"type": "git",
"url": "https://github.com/JS-DevTools/version-bump-prompt.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"bump": "bin/bump.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"clean": "shx rm -rf .nyc_output coverage lib",
"lint": "eslint src test",
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha && npm run lint",
"coverage": "nyc node_modules/mocha/bin/mocha",
"upgrade": "npm-check -u && npm audit fix",
"bump": "node bin/bump.js --tag --push --all",
"release": "npm run upgrade && npm run clean && npm run build && npm test && npm run bump"
},
"devDependencies": {
"@jsdevtools/chai-exec": "^2.1.1",
"@jsdevtools/eslint-config": "^1.1.4",
"@types/chai": "^4.2.12",
"@types/command-line-args": "^5.0.0",
"@types/globby": "^9.1.0",
"@types/inquirer": "^7.3.1",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.2",
"@types/semver": "^7.3.3",
"chai": "^4.2.0",
"del": "^5.1.0",
"eslint": "^7.7.0",
"mocha": "^8.1.3",
"npm-check": "^5.9.0",
"nyc": "^15.1.0",
"shx": "^0.3.2",
"strip-ansi": "^6.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@jsdevtools/ez-spawn": "^3.0.4",
"command-line-args": "^5.1.1",
"detect-indent": "^6.0.0",
"detect-newline": "^3.1.0",
"globby": "^11.0.1",
"inquirer": "^7.3.3",
"log-symbols": "^4.0.0",
"semver": "^7.3.2"
},
"engines": {
"node": ">=10"
},
"engineStrict": true
}