generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
71 lines (71 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
64
65
66
67
68
69
70
71
{
"name": "jest-github-action",
"version": "1.0.0",
"description": "Jest action adding checks to your pull requests",
"main": "lib/run.js",
"scripts": {
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"build": "tsc",
"pack": "ncc build lib/run.js -m",
"prepack": "npm run build",
"failing-test": "jest failing-tests",
"test": "jest /tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattallty/jest-github-action.git"
},
"keywords": [
"GitHub",
"Actions",
"Jest",
"Pull request"
],
"author": "Matthias Etienne <matthias@etienne.in>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattallty/jest-github-action/issues"
},
"homepage": "https://github.com/mattallty/jest-github-action#readme",
"jest": {
"clearMocks": true,
"moduleFileExtensions": [
"js",
"ts"
],
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"verbose": true
},
"dependencies": {
"@actions/core": "^1.1.1",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"lodash": "^4.17.15",
"markdown-table": "^2.0.0",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@octokit/types": "^2.11.1",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/markdown-table": "^2.0.0",
"@types/node": "^13.13.1",
"@typescript-eslint/parser": "^2.29.0",
"@zeit/ncc": "^0.20.5",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.4.0",
"prettier": "^2.0.4",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}