forked from newrelic/repolinter-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.72 KB
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
{
"name": "repolinter-action",
"version": "1.6.1",
"private": true,
"description": "GitHub action to automatically enforce open source policies using Repolinter",
"main": "lib/entry.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts __tests__/**/*.ts --fix",
"package": "rm -rf dist && ncc build --source-map --minify",
"test": "jest",
"release": "semantic-release",
"all": "npm run format && npm run lint && npm run build && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/newrelic/repolinter-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Noah Koontz (nkoontz@newrelic.com)",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@octokit/action": "^3.1.6",
"@octokit/plugin-retry": "^3.0.6",
"@octokit/rest": "^18.0.12",
"@octokit/types": "^6.1.1",
"@types/js-yaml": "^3.12.5",
"@types/node-fetch": "^2.5.7",
"node-fetch": "^2.6.1",
"repolinter": "github:newrelic-forks/repolinter#master"
},
"devDependencies": {
"@octokit/request-error": "^2.0.4",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"@vercel/ncc": "^0.26.0",
"eslint": "^7.15.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^3.14.1",
"nock": "^13.0.5",
"prettier": "2.2.1",
"prettier-plugin-jsdoc": "^0.2.7",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}