-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
45 lines (45 loc) · 934 Bytes
/
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
{
"name": "routr",
"version": "3.0.1",
"description": "A router for both server and client",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/yahoo/routr.git"
},
"scripts": {
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Lingyan Zhu <[email protected]>",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yahoo/routr/blob/master/LICENSE.md"
}
],
"dependencies": {
"path-to-regexp": "^6.2.0"
},
"devDependencies": {
"eslint": "^9.0.0",
"jest": "^29.0.0",
"pre-commit": "^1.0.7",
"prettier": "^3.0.0"
},
"pre-commit": [
"lint",
"test"
],
"keywords": [
"yahoo",
"router"
],
"prettier": {
"singleQuote": true,
"tabWidth": 4
}
}