-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 948 Bytes
/
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": "major-minor-tag-calculator",
"version": "0.0.1",
"description": "Calculate major and minor semver tags, e.g. for tagging containers",
"main": "src/index.js",
"scripts": {
"build": "npm install",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterhub/action-major-minor-tag-calculator"
},
"author": "OME",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"semver": "^7.6.3"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.10.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"undici": "^7.2.0"
}
}