-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.76 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
56
57
58
59
60
61
62
63
{
"name": "@mackerelio/create-release-pull-request-action",
"version": "0.0.0",
"private": true,
"description": "create release pull request action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "run-s lint:*",
"lint:eslint": "eslint src",
"lint:prettier": "prettier --check src",
"lint-fix": "run-p lint-fix:*",
"lint-fix:eslint": "eslint src --fix",
"lint-fix:prettier": "prettier --write src",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mackerelio/mackerel-create-release-pull-request-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/glob": "^0.3.0",
"@actions/io": "^1.1.2",
"ajv": "^8.11.0",
"date-fns": "^2.29.3",
"escape-string-regexp": "^4.0.0",
"semver": "^7.3.8"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^20.12.7",
"@types/semver": "^7.3.12",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"jest": "^28.1.2",
"js-yaml": "^4.1.0",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"snapshot-diff": "^0.10.0",
"timezone-mock": "^1.3.1",
"tmp-promise": "^3.0.3",
"ts-jest": "^28.0.5",
"typescript": "^4.8.4"
}
}