-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.25 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
{
"name": "@borderless/router",
"version": "1.0.5",
"publishConfig": {
"access": "public"
},
"description": "Simple pathname router that makes zero assumptions about the server",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/borderless/router.git"
},
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"homepage": "https://github.com/borderless/router",
"bugs": {
"url": "https://github.com/borderless/router/issues"
},
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "ts-scripts build",
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepare": "ts-scripts install",
"prepublishOnly": "npm run build",
"specs": "ts-scripts specs",
"test": "ts-scripts test"
},
"files": [
"dist/"
],
"keywords": [
"router",
"trie",
"path",
"route",
"parameter",
"typescript"
],
"devDependencies": {
"@borderless/ts-scripts": "^0.13.6",
"c8": "^7.11.3",
"typescript": "^4.7.4",
"vitest": "^0.16.0"
},
"typings": "dist/index.d.ts",
"ts-scripts": {
"project": [
"tsconfig.build.json"
]
}
}