-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "srvs",
"version": "0.6.3",
"description": "Zero dependency dev server",
"files": [
"src"
],
"main": "./src/server/index.js",
"bin": {
"srvs": "./src/index.js"
},
"type": "module",
"devDependencies": {
"eslint": "=9.5.0",
"prettier": "=3.3.2",
"tead": "=0.7.1"
},
"scripts": {
"clean": "npx --yes --quiet rimraf coverage node_modules",
"format": "prettier --write \"**/*.{js,css,html}\"",
"format:check": "prettier --list-different \"**/*.{js,css,html}\"",
"lint": "eslint .",
"test": "tead --coverage",
"test:watch": "tead --watch",
"start": "node examples/start",
"check": "npm run format:check && npm run lint && npm t",
"release:dry": "npm run clean && npm i && npm run check",
"release": "node release"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okwolf/srvs.git"
},
"author": "Wolfgang Wedemeyer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/okwolf/srvs/issues"
},
"homepage": "https://github.com/okwolf/srvs"
}