-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "url-router",
"version": "13.0.0",
"description": "A Trie-based router",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"test": "node test",
"build": "tsc -m CommonJS && mv dist/index.js dist/index.cjs && tsc -d"
},
"repository": {
"type": "git",
"url": "https://github.com/jiangfengming/url-router.git"
},
"keywords": [
"url",
"router",
"trie"
],
"author": "Jiang Fengming",
"license": "MIT",
"bugs": {
"url": "https://github.com/jiangfengming/url-router/issues"
},
"homepage": "https://github.com/jiangfengming/url-router",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-unambiguous": "^0.7.1",
"typescript": "^4.8.2"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"unambiguous",
"plugin:@typescript-eslint/recommended"
]
}
}