-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.81 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
59
60
{
"name": "eol-blocker",
"version": "1.0.15",
"description": "GitHub action to detect and block pull requests with invalid line-endings",
"type": "module",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"format": "prettier --write **/*.ts",
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest",
"build": "tsc",
"package": "npx rimraf ./dist && npx rollup --config rollup.config.ts --configPlugin \"@rollup/plugin-typescript={sourceMap:false}\"",
"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": "^3.0.1",
"@actions/github": "^9.1.1",
"minimatch": "^10.2.5"
},
"devDependencies": {
"@octokit/openapi-types": "^27.0.0",
"@octokit/webhooks-types": "^7.6.1",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@tony.ganchev/eslint-plugin-header": "^3.4.4",
"@types/minimatch": "^5.1.2",
"cross-env": "^10.1.0",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"jest": "^30.4.2",
"prettier": "^3.8.4",
"rimraf": "^6.1.3",
"rollup": "^4.62.2",
"ts-jest": "^29.4.11",
"ts-jest-resolver": "^2.0.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1"
},
"overrides": {
"@istanbuljs/load-nyc-config": {
"js-yaml": "^4.1.2"
}
},
"prettier": {
"endOfLine": "auto",
"singleQuote": true
}
}