-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 937 Bytes
/
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
{
"name": "react-scroll-to-element",
"version": "0.2.0",
"description": "Scroll to any element of your React application",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib || rm -rf lib ",
"build": "babel index.js --out-dir lib",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"react",
"scroll",
"element",
"class",
"id",
"pixels",
"offset"
],
"repository": {
"type": "git",
"url": "https://github.com/trembacz/react-scroll-to-element.git"
},
"author": "Tomasz Rembacz ([email protected])",
"license": "MIT",
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.1.1",
"smoothscroll-polyfill": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"rimraf": "^2.6.2"
},
"files": [
"lib/"
]
}