forked from ganderzz/react-scroll-to
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "react-scroll-to",
"version": "1.0.3",
"description": "Scroll to a position using react",
"main": "./dist/react-scroll-to.js",
"scripts": {
"test": "jest",
"build": "webpack",
"build:prod": "webpack -p",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ganderzz/react-scroll-to.git"
},
"keywords": [
"react",
"scroll",
"to",
"window",
"position"
],
"author": "Dylan Paulus",
"license": "MIT",
"bugs": {
"url": "https://github.com/ganderzz/react-scroll-to/issues"
},
"homepage": "https://github.com/ganderzz/react-scroll-to#readme",
"peerDepedencies": {
"react": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"all-contributors-cli": "^4.8.1",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.2.2",
"jest": "^21.2.1",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-test-renderer": "^16.1.1",
"webpack": "^3.8.1"
},
"dependencies": {
"prop-types": "^15.6.0",
"react-display-name": "^0.2.3"
},
"jest" : {
"setupFiles": ["./src/shim.js", "./src/setupTests.js"]
}
}