-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.1 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
{
"name": "livery",
"version": "4.0.3",
"description": "Minimal development server to watch and dispense static files.",
"author": "Shannon Moeller <me@shannonmoeller> (https://shannonmoeller.com)",
"repository": "shannonmoeller/livery",
"license": "MIT",
"keywords": [
"cli",
"dev",
"live",
"livereload",
"lr",
"reload",
"server"
],
"type": "module",
"main": "index.js",
"bin": {
"livery": "cli.js",
"lr": "cli.js"
},
"dependencies": {
"chokidar": "^4.0.1",
"minimist": "^1.2.8",
"send": "^1.1.0",
"tiny-lr": "^2.0.0"
},
"scripts": {
"lint": "npm run lint-eslint && npm run lint-prettier",
"lint-eslint": "npx eslint@8 --ignore-path .gitignore --fix '**/*.js'",
"lint-prettier": "npx prettier@3 --ignore-path .gitignore --write '**/*.js'"
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
}
},
"prettier": {
"singleQuote": true
},
"engines": {
"node": ">=12.17.0"
}
}