-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 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
{
"name": "set-version-action",
"version": "2.1.0",
"description": "This action sets the version based on either the current commit hash or tag.",
"main": "src/index.ts",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weareyipyip/set-version-action.git"
},
"keywords": [],
"author": "YipYip",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/weareyipyip/set-version-action/issues"
},
"homepage": "https://github.com/weareyipyip/set-version-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"semver": "^7.3.8"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/semver": "^7.3.12",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.26.0",
"eslint-plugin-jest": "^26.9.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.5",
"typescript": "^4.8.4"
}
}