-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "semantic-release-major-tag",
"version": "0.0.0-dev",
"description": "Create and update major version tags during release",
"main": "dist/index.js",
"files": [
"dist/*"
],
"engines": {
"node": ">=14"
},
"scripts": {
"precompile": "rimraf ./dist",
"compile": "tsc",
"test": "npm run jest --coverage && npm run lint && npm run prettier",
"fix": "npm run lint --fix && npm run prettier-fix",
"jest": "jest",
"lint": "eslint ./src",
"prettier": "prettier --check ./src",
"prettier-fix": "prettier --write ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doteric/semantic-release-major-tag.git"
},
"keywords": [
"semantic-release",
"major",
"version",
"tag"
],
"author": "doteric",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/semantic-release": "^17.2.4",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {}
}