This repository was archived by the owner on Feb 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
46
47
48
49
{
"name": "my-new-action",
"version": "1.0.0",
"description": "",
"main": "lib/main.js",
"engines": {
"node": "16.x"
},
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc --project tsconfig.build.json",
"format": "dprint fmt",
"format-check": "dprint check",
"lint": "eslint src/**/*.ts",
"prepackage": "rimraf dist",
"package": "ncc build",
"test": "jest",
"all": "npm run format-check && npm run lint && npm run build && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kachick/my-new-action.git"
},
"keywords": [],
"author": "Kenichi Kamiya <kachick1@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.0",
"@actions/github": "^5.0.3"
},
"devDependencies": {
"@octokit/types": "^6.37.1",
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/node": "^16.11.41",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.18.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}