-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.69 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
68
69
70
71
{
"name": "next-typed-routes",
"version": "1.0.2",
"description": "Type safe route utilities for Next.js.",
"keywords": [
"next.js",
"routes",
"router",
"routing",
"redirect",
"typescript"
],
"homepage": "https://github.com/jagaapple/next-typed-routes",
"bugs": "https://github.com/jagaapple/next-typed-routes/issues",
"license": "MIT",
"author": "Jaga Apple",
"contributors": [],
"files": [
"lib",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"LICENSE",
"package.json",
"README.md"
],
"main": "lib/index.js",
"bin": "",
"man": "",
"repository": {
"type": "git",
"url": "https://github.com/jagaapple/next-typed-routes.git"
},
"scripts": {
"prebuild": "rm -rf ./lib",
"build": "tsc",
"lint": "eslint ./src/**/*.ts",
"fix": "eslint --fix ./src/**/*.ts",
"prepublishOnly": "npm run build",
"test": "jest --coverage",
"coverage": "codecov",
"clean": "rm -rf ./lib ./coverage"
},
"config": {},
"dependencies": {
"query-string": "^6.9.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/jest-plugin-context": "^2.9.2",
"@types/node": "^12.7.11",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"codecov": "^3.6.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"jest-plugin-context": "^2.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"peerDependencies": {},
"engines": {
"node": ">=10.0.0"
},
"engineStrict": false,
"preferGlobal": true,
"private": false
}