forked from EndBug/version-check
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.57 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
53
54
55
{
"name": "compare-npm-versions-ci",
"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",
"build:ci": "ncc build src/main.ts --minify --out lib && git add 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": "jest"
},
"keywords": [
"github",
"action",
"version",
"npm",
"node"
],
"pre-commit": [
"build:ci"
],
"author": "-",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"compare-versions": "^3.6.0",
"get-npm-package-version": "^1.0.6",
"latest-version": "^5.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^12.19.6",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"@zeit/ncc": "^0.21.1",
"all-contributors-cli": "^6.16.1",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"jest-circus": "^26.4.2",
"js-yaml": "^3.14.0",
"lint-staged": "^9.4.3",
"pre-commit": "^1.2.2",
"prettier": "2.1.1",
"ts-jest": "^24.3.0",
"typescript": "^3.8.3"
}
}