-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.07 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
{
"name": "raise-version",
"version": "0.5.0",
"description": "Update and commit package version for Gitflow workflow",
"keywords": [
"version",
"semver",
"bump",
"gitflow"
],
"main": "lib/raiseVersion.js",
"bin": {
"raisever": "bin/cli.js",
"raise-version": "bin/cli.js"
},
"types": "lib/raiseVersion.d.ts",
"typings": "lib/raiseVersion.d.ts",
"scripts": {
"prepublishOnly": "npm run lint && npm run test && npm run build",
"build": "npm run clean && tsc -p tsconfig.json && chmod +x bin/cli.js",
"watch": "npm run clean && tsc -p tsconfig.json --watch",
"clean": "rimraf bin lib",
"raise": "node bin/cli.js",
"test": "jest --config jest.config.ts --runInBand",
"test:coverage": "rimraf coverage && cross-env COVERAGE=yes jest --config jest.config.ts --runInBand",
"test:ci": "rimraf coverage reports && cross-env COVERAGE=yes JEST_JUNIT_OUTPUT_DIR=reports/junit jest --config jest.config.ts --ci --reporters=default --reporters=jest-junit --runInBand",
"lint": "eslint src",
"lint:test": "eslint test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ezze/node-raise-version.git"
},
"author": "Dmitriy Pushkov <ezze@ezze.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ezze/node-raise-version/issues"
},
"homepage": "https://github.com/ezze/node-raise-version#readme",
"dependencies": {
"execa": "^5.0.0",
"fs-extra": "^9.0.1",
"moment": "^2.29.1",
"semver": "^7.3.4",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.5",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.12",
"@types/semver": "^7.3.4",
"@types/yargs": "^15.0.11",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"cross-env": "^7.0.3",
"eslint": "^7.15.0",
"eslint-config-ezze-ts": "^0.10.1",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"mock-argv": "^1.1.9",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}