-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "version-check",
"version": "2.1.5",
"description": "An action that allows you to check whether your npm package version has been updated",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/main.ts --minify --out lib",
"watch": "ncc build src/main.ts --watch --out lib",
"lint": "eslint ./src --ext ts && echo 'Lint complete.'",
"lint:fix": "eslint ./src --ext ts --fix && echo \"Lint & fix complete.\"",
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@actions/core": "^1.10.1",
"got": "^11.8.3",
"semver-diff": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.11.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.20.0",
"@vercel/ncc": "^0.38.2",
"all-contributors-cli": "^6.26.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EndBug/version-check.git"
},
"keywords": [
"github",
"action",
"version",
"npm",
"node"
],
"author": "Federico Grandi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EndBug/version-check/issues"
},
"homepage": "https://github.com/EndBug/version-check#readme",
"engines": {
"node": ">=20"
}
}