-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "codetour-watch",
"version": "3.0.0",
"description": "GitHub Action that flags file changes that may affect CodeTour content",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**/*.js",
"prettier": "prettier --write \"**/*.{html,js,json,md,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{html,js,json,md,yaml,yml}\"",
"prepare": "husky || true",
"precommit": "lint-staged"
},
"author": "Philippe Ozil (pozil)",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"eslint": "^9.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/pozil/codetour-watch.git"
},
"keywords": [
"github",
"action",
"codetour",
"watch"
],
"lint-staged": {
"/*.{html,js,json,md,yaml,yml}": [
"prettier --write"
],
"src/**/*.js": [
"prettier --write",
"eslint"
]
},
"engines": {
"node": ">=20"
},
"volta": {
"node": "20.13.1"
}
}