-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "react-router-hash-link",
"version": "2.4.3",
"description": "Hash link scroll functionality for React Router v4/5",
"main": "dist/react-router-hash-link.cjs.js",
"module": "dist/react-router-hash-link.esm.js",
"sideEffects": false,
"scripts": {
"build": "rollpkg build",
"watch": "rollpkg watch",
"prepublishOnly": "npm run build",
"lintStaged": "lint-staged"
},
"files": [
"dist"
],
"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 <rafael@rafgraph.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rafgraph/react-router-hash-link/issues"
},
"peerDependencies": {
"react": ">=15",
"react-router-dom": ">=4"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"lint-staged": "^10.5.4",
"pre-commit": "^1.2.2",
"react": "file:demo/node_modules/react",
"react-router-dom": "file:demo/node_modules/react-router-dom",
"rollpkg": "^0.5.5",
"typescript": "^4.2.4"
},
"pre-commit": "lintStaged",
"lint-staged": {
"(src/**/*|demo/src/**/*)": [
"prettier --write --ignore-unknown"
]
},
"prettier": "rollpkg/configs/prettier.json"
}