-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.69 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
57
58
59
60
61
62
63
{
"name": "@foo-software/react-scroll-context",
"version": "0.0.27",
"description": "A React scroll context provider and consumer for detecting scroll position (scrollX, scrollY) and providing that data to child components.",
"main": "build/index.js",
"peerDependencies": {
"react": "^16.8",
"react-dom": "^16.8"
},
"scripts": {
"build": "webpack",
"clean": "rimraf dist",
"prepare": "npm run clean && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foo-software/react-scroll-context.git"
},
"keywords": [
"component",
"context",
"foo",
"handler",
"react",
"react context",
"provider",
"scroll",
"scroll context",
"scroll handler",
"scroll provider",
"www.foo.software"
],
"author": "Adam Henson <adamhenson1979@gmail.com> (https://github.com/adamhenson)",
"license": "MIT",
"bugs": {
"url": "https://github.com/foo-software/react-scroll-context/issues"
},
"homepage": "https://github.com/foo-software/react-scroll-context#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"rimraf": "^3.0.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}