generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"name": "prevent-file-change",
"version": "3.0.0",
"private": true,
"description": "Fail a pull request workflow if certain files are changed",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write src __tests__ *.ts *.json",
"format-check": "prettier --check src __tests__ *.ts *.json",
"lint": "eslint --fix",
"lint-check": "eslint --max-warnings 0",
"package": "ncc build src/index.ts -o dist --source-map --license LICENSE",
"test": "jest",
"test-watch": "jest --watchAll",
"all": "npm run build && npm run format-check && npm run lint-check && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xalvarez/prevent-file-change-action.git"
},
"keywords": [
"github-actions",
"node"
],
"author": "Xavier Alvarez",
"license": "MIT",
"engines": {
"node": "24.x"
},
"dependencies": {
"@actions/core": "2.0.3",
"@actions/github": "9.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/jest": "30.0.0",
"@types/node": "24.12.0",
"@vercel/ncc": "0.38.4",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "29.15.0",
"eslint-plugin-prettier": "5.5.5",
"jest": "30.3.0",
"jest-circus": "30.2.0",
"js-yaml": "4.1.1",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1"
}
}