generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "prevent-file-change",
"version": "1.9.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",
"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": "20.x"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.14",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.2",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}