forked from BDav24/next-url-prettifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "next-url-prettifier",
"version": "1.3.0",
"description": "Url prettifier for Next Framework",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": "https://github.com/BDav24/next-url-prettifier.git",
"author": "BDav24",
"license": "MIT",
"keywords": [
"next",
"next.js",
"nextjs",
"pretty-url",
"react",
"route",
"routes",
"router"
],
"scripts": {
"build": "babel src --out-dir lib && yarn run build-dot-flow",
"build-dot-flow": "find ./src -name '*.js' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done",
"lint": "eslint --ignore-pattern 'flow-typed' --ignore-pattern 'lib' .",
"prepublish": "yarn run build",
"qa": "yarn run flow && yarn run test",
"test": "jest --coverage"
},
"peerDependencies": {
"next": ">= 1",
"react": ">= 15"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-react": "^7.6.1",
"flow-bin": "^0.64.0",
"flow-typed": "^2.2.3",
"jest": "^22.1.4",
"next": "^4.2.3",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0"
}
}