forked from newrelic/repolinter-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.64 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": "repolinter-action",
"version": "1.7.3",
"private": true,
"description": "GitHub action to automatically enforce open source policies using Repolinter",
"main": "src/entry.ts",
"scripts": {
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts __tests__/**/*.ts --fix",
"package": "ncc build --source-map --minify --target es2020",
"test": "jest",
"release": "semantic-release",
"all": "npm run format && npm run lint && npm run package && npm test"
},
"engines": {
"node": ">=14",
"npm": ">=7.24"
},
"repository": {
"type": "git",
"url": "https://github.com/todogroup/repolinter-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Noah Koontz (noah@koontzs.com)",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.5.0",
"@octokit/action": "^3.17.1",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/rest": "^18.11.1",
"@octokit/types": "^6.31.0",
"@types/js-yaml": "^4.0.3",
"repolinter": "^0.11.2"
},
"devDependencies": {
"@octokit/request-error": "^2.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"@vercel/ncc": "^0.31.1",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.3.0",
"eslint-plugin-jest": "^24.4.2",
"jest": "^27.2.2",
"jest-circus": "^27.2.2",
"js-yaml": "^4.1.0",
"nock": "^13.1.3",
"prettier": "2.4.1",
"prettier-plugin-jsdoc": "^0.3.24",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}