forked from EndBug/version-check
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 KB
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
{
"name": "version-check",
"version": "1.5.0",
"description": "An action that allows you to check whether your npm package version has been updated",
"main": "lib/main.js",
"scripts": {
"build": "npm i && 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.'",
"lintfix": "eslint ./src --ext ts --fix && echo \"Lint & fix complete.\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EndBug/version-check.git"
},
"keywords": [
"github",
"action",
"version",
"npm",
"node"
],
"author": "Federico Grandi <fgrandi30@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EndBug/version-check/issues"
},
"homepage": "https://github.com/EndBug/version-check#readme",
"dependencies": {
"@actions/core": "^1.2.3",
"axios": "^0.19.2",
"semver-diff": "^3.1.1",
"semver-regex": "^3.1.1"
},
"devDependencies": {
"@types/node": "^12.12.30",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"@zeit/ncc": "^0.21.1",
"all-contributors-cli": "^6.16.1",
"eslint": "^6.8.0",
"typescript": "^3.8.3"
}
}