forked from aki77/simplecov-report-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "simplecov-report",
"version": "1.0.0",
"private": true,
"description": "SimpleCov Report",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "fukumone|pinnacles",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3",
"jszip": "^3.10.0",
"markdown-table": "^3.0.2"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@octokit/plugin-rest-endpoint-methods": "^5.14.0",
"@octokit/rest": "^18.12.0",
"@types/jest": "^28.1.1",
"@types/markdown-table": "^3.0.0",
"@typescript-eslint/parser": "^5.27.1",
"@zeit/ncc": "^0.22.3",
"babel-jest": "^28.1.1",
"eslint": "^8.17.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"jest-circus": "^28.1.1",
"js-yaml": "^4.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
}
}