-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "get-version",
"version": "1.1.0",
"description": "Github Action to help parse the package version and set github outputs",
"main": "index.js",
"scripts": {
"build": "npx ncc build src/index.ts --license licenses.txt",
"test": "jest",
"lint": "eslint . --max-warnings=0",
"prepare": "is-ci || husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EHitchcockIAG/get-version.git"
},
"author": "Ethan Hitchcock",
"license": "MIT",
"bugs": {
"url": "https://github.com/EHitchcockIAG/get-version/issues"
},
"homepage": "https://github.com/EHitchcockIAG/get-version#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"lodash": "^4.17.21",
"semver": "^7.3.8"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/format": "^17.0.0",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.191",
"@types/mock-fs": "^4.13.1",
"@types/node": "^16.16.0",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vercel/ncc": "^0.36.1",
"babel-jest": "^29.5.0",
"eslint": "^8.36.0",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"mock-fs": "^5.2.0",
"typescript": "^5.0.2"
}
}