-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "@zauberware/react-scroll-to",
"version": "0.2.2",
"description": "Scroll to ankers on your page. Scroll to Provider for React (^16.3.0) .. or better (^16.6.0).",
"main": "build/index.js",
"peerDependencies": {
"react": "^16.3.0"
},
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zauberware/react-scroll-to.git"
},
"keywords": [
"react",
"scroll",
"scroll-to",
"refs",
"Provider",
"Context API"
],
"author": "Philipp Siegmund <[email protected]> (http://zauberware.com/)",
"contributors": [
"Simon Franzen <[email protected]> (http://zauberware.com/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zauberware/react-scroll-to/issues"
},
"homepage": "https://github.com/zauberware/react-scroll-to#readme",
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.3.0",
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
}
}