generated from technote-space/ts-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
64
{
"name": "@technote-space/github-action-test-helper",
"version": "0.11.17",
"description": "Test helper for GitHub Actions.",
"keywords": [
"github",
"github actions"
],
"homepage": "https://github.com/technote-space/github-action-test-helper",
"bugs": {
"url": "https://github.com/technote-space/github-action-test-helper/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/technote-space/github-action-test-helper.git"
},
"license": "MIT",
"author": {
"name": "Technote",
"email": "[email protected]",
"url": "https://technote.space"
},
"type": "module",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --emitDeclarationOnly && rollup -c",
"cover": "vitest run --coverage",
"lint": "eslint 'src/**/*.ts' --cache",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"test": "yarn lint && yarn typecheck && yarn cover",
"typecheck": "tsc --noEmit",
"update": "npm_config_yes=true npx npm-check-updates -u --timeout 100000 && yarn install && yarn upgrade && yarn audit"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"js-yaml": "4.1.0",
"vitest": "^0.31.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.1",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vitest/coverage-c8": "^0.31.1",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.5",
"rollup": "^3.23.0",
"typescript": "^5.0.4"
},
"publishConfig": {
"access": "public"
}
}