-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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": "next-route-resolver",
"description": "Declarative route definition for Next.js",
"version": "0.0.7",
"main": "dist",
"files": [
"dist"
],
"scripts": {
"lint": "eslint *.js src",
"build": "del dist/* && babel src -d dist",
"prepublishOnly": "yarn lint && yarn test && yarn build",
"test": "jest src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zegocover/next-route-resolver.git"
},
"author": "Zego",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zegocover/next-route-resolver/issues"
},
"homepage": "https://github.com/Zegocover/next-route-resolver#readme",
"dependencies": {
"lodash": "^4.17.11",
"path-to-regexp": "^3.0.0",
"url-join": "^4.0.0"
},
"prettier": {
"tabWidth": 2,
"printWidth": 79,
"trailingComma": "all"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-lodash": "^3.3.4",
"del-cli": "^1.1.0",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.4.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^23.6.0",
"prettier": "^1.15.3"
}
}