forked from trevorr/react-scroll-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.67 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
{
"name": "react-scroll-manager",
"version": "1.0.3",
"description": "Scroll position manager for React applications",
"main": "lib/index.js",
"files": [
"lib",
"src/index.d.ts"
],
"types": "src/index.d.ts",
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint 'src/*.js' 'test/*.js'",
"prepublishOnly": "npm run build",
"prepush": "npm run build && npm test && npm run lint",
"test": "jest"
},
"husky": {
"hooks": {
"pre-push": "npm run prepush"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/trevorr/react-scroll-manager.git"
},
"keywords": [
"react",
"router",
"history",
"scroll"
],
"author": "Trevor Robinson",
"license": "ISC",
"bugs": {
"url": "https://github.com/trevorr/react-scroll-manager/issues"
},
"homepage": "https://github.com/trevorr/react-scroll-manager#readme",
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"eslint": "^7.2.0",
"eslint-plugin-react": "^7.20.0",
"history": "^4.10.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^16.13.1"
},
"engines": {
"node": ">=10.0.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}