This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
forked from leancodepl/ts-routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.52 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
60
61
62
63
64
65
66
67
{
"name": "ts-routes",
"version": "2.0.0",
"description": "Strongly typed routes management",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"test:types": "tsd",
"pretest:types": "npm run build",
"build": "rollup -c",
"lint": "eslint src/** __tests__/**"
},
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/leancodepl/ts-routes.git"
},
"keywords": [
"routes",
"typescript",
"path-to-regexp",
"react-router",
"strongly",
"typed",
"paths",
"pattern",
"routing"
],
"author": "LeanCode",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/leancodepl/ts-routes/issues"
},
"homepage": "https://github.com/leancodepl/ts-routes#readme",
"dependencies": {
"path-to-regexp": ">=6.0.0",
"qs": ">=6.0.0"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/node": "^14.0.0",
"@types/qs": "6.9.6",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"jest": "27.0.4",
"prettier": "2.3.1",
"rollup": "2.52.1",
"rollup-plugin-clear": "2.0.7",
"rollup-plugin-typescript2": "0.30.0",
"ts-jest": "27.0.3",
"tsd": "0.17.0",
"typescript": "4.3.4"
},
"tsd": {
"directory": "__tests__/types"
}
}