forked from bradennapier/eslint-plus-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.36 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "typescript-action",
"version": "3.5",
"private": true,
"description": "TypeScript template action",
"main": "lib/run.js",
"sideEffects": false,
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build src/run.ts -o dist -e eslint",
"test": "echo TODO",
"run:quick": "ts-node src/quick.ts",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bradennapier/eslint-plus-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"husky": {
"hooks": {
"pre-commit": "scripts/precommit.sh"
}
},
"author": "YourNameOrOrganization",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^0.6.1",
"@actions/core": "^1.2.4",
"@actions/github": "^4.0.0",
"@actions/glob": "^0.1.0",
"@octokit/plugin-throttling": "^3.3.0",
"@octokit/webhooks": "^7.6.5",
"adm-zip": "^0.4.16",
"dayjs": "^1.8.29",
"dedent": "^0.7.0",
"eslint-rule-documentation": "^1.0.23",
"lodash.clonedeep": "^4.5.0",
"micromatch": "^4.0.2",
"minimatch": "^3.0.4",
"tslib": "^2.0.0"
},
"devDependencies": {
"@google/semantic-release-replace-plugin": "^1.0.0",
"@octokit/rest": "^18.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@types/adm-zip": "^0.4.33",
"@types/dedent": "^0.7.0",
"@types/eslint": "^8.4.0",
"@types/jest": "^26.0.4",
"@types/lodash.clonedeep": "^4.5.6",
"@types/micromatch": "^4.0.1",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@zeit/ncc": "^0.22.3",
"conventional-changelog-conventionalcommits": "^4.3.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-circus": "^26.1.0",
"js-yaml": "^3.14.0",
"prettier": "^2.0.5",
"semantic-release": "^17.1.1",
"ts-jest": "^26.1.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}