forked from tyankatsu0105/read-package-version-actions
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.27 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
{
"engines": {
"node": "12.13.x"
},
"name": "read-package-node-version-actions",
"version": "1.0.0",
"private": true,
"description": "Output node version numbers from package.json",
"main": "lib/main.js",
"scripts": {
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"commit": "git-cz",
"precommit": "npm run build && lint-staged && npm run test",
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/culshaw/read-package-node-version-actions.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "culshaw ([email protected])",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"lint-staged": "^9.4.3",
"prettier": "^1.19.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}