-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
{
"name": "react-router-redial",
"version": "0.3.6",
"description": "Easy integration of redial for React Router",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint src",
"release": "node ./scripts/release.js",
"prepublish": "npm run build",
"test:unit": "cross-env NODE_ENV=test mocha tests --recursive --compilers js:babel-register",
"test:coverage": "nyc --include / --reporter=text-summary --reporter=lcov npm run test:unit",
"test": "npm run lint && npm run test:coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dlmr/react-router-redial.git"
},
"keywords": [
"react",
"react router",
"redial",
"data fetching"
],
"author": "Gustaf Dalemar",
"contributors": [
"Patrik Åkerstrand <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dlmr/react-router-redial/issues"
},
"homepage": "https://github.com/dlmr/react-router-redial#readme",
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0",
"react-router": "^2.4.0 || ^3.0.0",
"redial": "^0.4.1 || ^0.5.0"
},
"devDependencies": {
"babel-cli": "6.8.0",
"babel-core": "6.8.0",
"babel-eslint": "6.0.4",
"babel-plugin-__coverage__": "0.111111.11",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-1": "6.5.0",
"babel-register": "6.8.0",
"coveralls": "2.11.9",
"cross-env": "1.0.7",
"eslint": "2.9.0",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.8.0",
"eslint-plugin-import-order": "2.1.4",
"eslint-plugin-jsx-a11y": "1.2.0",
"eslint-plugin-react": "5.1.1",
"eslint-plugin-sorting": "0.1.0",
"expect": "1.20.1",
"mocha": "2.4.5",
"nyc": "6.4.4",
"react": "^15.0.2",
"react-router": "^3.0.0",
"readline-sync": "1.4.2",
"redial": "^0.5.0"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"prop-types": "^15.5.8"
}
}