-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "route-node",
"version": "4.1.1",
"description": "A package to create a tree of named routes",
"main": "dist/index.js",
"module": "dist/route-node.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"LICENSE"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src test",
"prepare": "tsdx build",
"clog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "https://github.com/troch/route-node.git"
},
"keywords": [
"route tree",
"named route",
"route matching"
],
"author": "Thomas Roch",
"license": "MIT",
"bugs": {
"url": "https://github.com/troch/route-node/issues"
},
"homepage": "https://github.com/troch/route-node",
"devDependencies": {
"conventional-changelog-cli": "2.0.31",
"@types/jest": "^24.0.25",
"husky": "^3.1.0",
"tsdx": "^0.12.1",
"typescript": "^3.7.4"
},
"dependencies": {
"path-parser": "6.1.0",
"search-params": "3.0.0",
"tslib": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src test"
}
}
}