forked from rafgraph/react-router-hash-link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "react-router-hash-link",
"version": "2.2.2",
"description": "Hash link scroll functionality for React Router v4/5",
"main": "lib/index.js",
"scripts": {
"dev": "npm link && npm run watch && npm unlink -g react-router-hash-link",
"watch": "trap 'exit 0' SIGINT; babel src -d lib --watch --presets=@babel/preset-env,@babel/preset-react",
"build": "rm -rf lib && babel src -d lib --presets=@babel/preset-env,@babel/preset-react",
"prepublishOnly": "npm run build"
},
"files": [
"src",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rafgraph/react-router-hash-link.git"
},
"keywords": [
"react",
"react-router",
"link",
"hash-link",
"scroll"
],
"author": "Rafael Pedicini <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rafgraph/react-router-hash-link/issues"
},
"peerDependencies": {
"react": ">=15",
"react-router-dom": ">=4"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"prettier": "^2.1.2"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
}
}