This repository has been archived by the owner on Jan 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
81 lines (81 loc) · 2.44 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
76
77
78
79
80
81
{
"name": "react-router-scroll-memory",
"version": "2.0.7",
"description": "For React Router V4. React component to keep the scroll of the page and to restore it if the user clicks on the previous button of its browser",
"main": "./dist/ScrollMemory.min.js",
"scripts": {
"test": "jest",
"flow": "node_modules/.bin/flow",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"lint": "eslint src",
"format": "prettier --write \"src/*.+(js|jsx||json|yml|yaml|css|scss|ts|tsx|graphql|vue|mjs)\" ",
"validate": "npm run lint && npm run test && npm run flow",
"precommit": "lint-staged && npm run test && npm run flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipatate/react-router-scroll-memory.git"
},
"keywords": [
"react",
"router",
"scroll",
"history"
],
"files": [
"dist"
],
"author": "Faramaz Patrick",
"license": "ISC",
"bugs": {
"url": "https://github.com/ipatate/react-router-scroll-memory/issues"
},
"homepage": "https://github.com/ipatate/react-router-scroll-memory#readme",
"peerDependencies": {
"react": ">=15.x",
"react-router-dom": ">=4.x"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.85.0",
"husky": "^1.1.3",
"jest": "^24.8.0",
"lint-staged": "^8.0.4",
"react": "^16.6.0",
"react-router-dom": "^4.3.1",
"react-test-renderer": "^16.6.0",
"rollup": "^1.27.13",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^6.0.4"
},
"browserslist": [
"last 2 version",
"> 1%",
"IE 11"
]
}