-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "eol-blocker",
"version": "1.0.14",
"description": "GitHub action to detect and block pull requests with invalid line-endings",
"main": "lib/index.js",
"scripts": {
"format": "prettier --write **/*.ts",
"test": "jest",
"build": "tsc",
"package": "ncc build --source-map",
"all": "npm run format && npm run build && npm run test && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoftgraph/eol-blocker.git"
},
"author": "jasonjoh",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoftgraph/eol-blocker/issues"
},
"homepage": "https://github.com/microsoftgraph/eol-blocker#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@vercel/ncc": "^0.38.3",
"minimatch": "^9.0.5",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@octokit/openapi-types": "^22.2.0",
"@octokit/webhooks-types": "^7.5.1",
"@types/minimatch": "^5.1.2",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"fetch-mock": "^9.11.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"prettier": {
"endOfLine": "auto",
"singleQuote": true
}
}