This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
forked from fridays/next-routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.84 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
72
73
74
75
{
"name": "@ghostgroup/next-routes",
"version": "1.5.1-beta",
"description": "Easy to use universal dynamic routes for Next.js",
"main": "dist",
"typings": "typings/next-routes.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/GhostGroup/next-routes.git"
},
"files": [
"dist",
"typings"
],
"scripts": {
"lint": "standard 'src/*' 'test/*'",
"build": "del dist/* && babel src -d dist",
"prepublishOnly": "npm run test",
"pretest": "npm run lint && npm run build",
"test": "npm run testOnly && npm run testTypings",
"testOnly": "jest \\.test.js --coverage",
"testTypings": "tsc --project ./typings/tests",
"testCI": "npm run test && cat coverage/lcov.info | coveralls",
"dev": "concurrently -k 'npm run build -- -w' 'npm run testOnly -- --watch'"
},
"standard": {
"parser": "babel-eslint"
},
"jest": {
"testEnvironment": "node",
"roots": [
"test/",
"dist/"
]
},
"dependencies": {
"path-to-regexp": "^2.1.0"
},
"peerDependencies": {
"next": ">=2",
"react": "^15.4.2 || ^16"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.47",
"@babel/core": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"@types/next": "^2.4.8",
"@types/node": "^10.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.4.3",
"concurrently": "^3.5.0",
"coveralls": "^3.0.0",
"del-cli": "^1.1.0",
"jest": "^22.4.3",
"next": "^6.0.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"standard": "^11.0.1",
"typescript": "^2.7.2"
},
"author": "fridays",
"license": "MIT",
"keywords": [
"next",
"next.js",
"react",
"route",
"router",
"routes",
"routing"
]
}