-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "@lint-md/github-action",
"version": "0.1.1",
"description": "github action for lint-md",
"main": "dist/index.js",
"scripts": {
"test": "jest --no-cache",
"lint": "eslint --ext .ts --ext .tsx --max-warnings 0 ./src",
"clean": "rimraf dist",
"build:dev": "yarn clean && webpack --mode development",
"build:prod": "yarn clean && webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuzhanglong/hello-world-javascript-action.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuzhanglong/hello-world-javascript-action/issues"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!**/node_modules/**",
"!**/vendor/**"
]
},
"homepage": "https://github.com/yuzhanglong/hello-world-javascript-action#readme",
"devDependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@lint-md/cli": "^0.1.5",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"node-require-webpack-plugin": "^0.1.1",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.1.1",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0"
},
"type": "commonjs",
"files": [
"esm",
"lib",
"src"
]
}