forked from fkhadra/react-on-screen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "react-on-screen",
"version": "1.0.2",
"description": "A wrapper component to track if your react component is visible on screen",
"keywords": [
"react",
"viewport",
"react-component",
"visible",
"track",
"react-on-screen",
"screen"
],
"main": "lib/index.js",
"scripts": {
"lint": "eslint src/",
"pretest": "npm run lint",
"test": "mocha --compilers js:babel-core/register --require jsdomSetup.js --recursive test/",
"prebuild": "npm run test",
"build": "./scripts/build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sniphpet/react-on-screen.git"
},
"author": "Fadi Khadra <[email protected]> (https://sniphpet.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sniphpet/react-on-screen/issues"
},
"homepage": "https://github.com/sniphpet/react-on-screen#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"jsdom": "^9.4.2",
"karma": "^1.2.0",
"mocha": "^3.0.2",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0",
"sinon": "^1.17.5",
"webpack": "^1.13.1",
"babel-loader": "^6.2.4"
},
"dependencies": {
"lodash.throttle": "^4.1.0",
"react": "^15.3.0"
}
}