generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
67 lines (67 loc) · 2.02 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
{
"name": "@trilom/file-changes-action",
"version": "1.2.4",
"engines": {
"node": "12.16.3"
},
"description": "Creates outputs variables of files modified, added, or removed by a PR or Push.",
"main": "lib/main.js",
"scripts": {
"build": "yarn && tsc",
"build-package": "yarn build --build tsconfig.build.json && ncc build",
"build-release": "yarn build-package --minify",
"test": "jest",
"test-coverage": "jest --coverage",
"test-integration": "jest -c jest.config.integration.js && rm -rf src/tests/outputs",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint --ext .ts ./",
"clean": "rm -rf node_modules lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trilom/file-changes-action.git"
},
"keywords": [
"actions",
"action",
"github-action",
"github-actions",
"github",
"node",
"typescript",
"examples"
],
"author": "Bryan Killian <[email protected]>",
"homepage": "https://github.com/trilom/file-changes-action#README",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1"
},
"devDependencies": {
"@octokit/types": "^2.5.0",
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"@zeit/ncc": "^0.20.5",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-unicorn": "^17.2.0",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"typescript": "^3.8.3"
}
}