generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.69 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "changed-file-filter",
"version": "0.2.5",
"private": true,
"description": "Only run Github Action job when specific files changed",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tony84727/changed-file-filter.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "tony84727",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/jest-expect-message": "^1.0.3",
"@types/js-yaml": "^3.12.7",
"@types/node": "^18.16.3",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.8.0",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^4.3.8",
"jest": "^29.5.0",
"jest-circus": "^27.4.6",
"jest-expect-message": "^1.0.2",
"jest-runner-groups": "^2.1.0",
"js-yaml": "^4.1.0",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"tmp": "^0.2.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}