forked from ryanflorence/react-router-restore-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.05 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-restore-scroll",
"version": "0.0.1",
"description": "Scroll positions restoration for React Router",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ryanflorence/react-router-relative-links.git"
},
"bugs": "https://github.com/ryanflorence/react-router-relative-links/issues",
"scripts": {
"build": "babel ./modules -d lib --ignore '__tests__'",
"build-umd": "NODE_ENV=production webpack modules/RestoreScroll.js umd/RestoreScroll.js",
"build-min": "NODE_ENV=production webpack -p modules/RestoreScroll.js umd/RestoreScroll.min.js",
"lint": "eslint modules",
"start": "webpack-dev-server --config example/webpack.config.js --inline --content-base example",
"test": "npm run lint && karma start"
},
"authors": [
"Ryan Florence"
],
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-router": "^2.4.0",
"history": "^2.1.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.0",
"babel-eslint": "*",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "*",
"eslint-config-rackt": "*",
"eslint-plugin-react": "*",
"expect": "^1.12.0",
"gzip-size": "^3.0.0",
"history": "^2.1.1",
"karma": "^0.13.3",
"karma-browserstack-launcher": "^0.1.3",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.4",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"mocha": "^2.0.1",
"pretty-bytes": "^2.0.1",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-router": "^2.4.0",
"rimraf": "^2.4.2",
"webpack": "^1.12.6",
"webpack-dev-middleware": "^1.2.0",
"webpack-dev-server": "^1.14.1"
},
"tags": [
"react",
"react router",
"scroll",
"scroll behavior"
],
"keywords": [
"react",
"react router",
"scroll",
"scroll behavior"
]
}