-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.37 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-intersection-visible-hook",
"version": "1.4.2",
"homepage": "https://github.com/AvraamMavridis/react-intersection-visible-hook",
"repository": {
"type": "git",
"url": "https://github.com/AvraamMavridis/react-intersection-visible-hook"
},
"author": "Avraam Mavridis <[email protected]>",
"description": "react intersection visible hook for react",
"scripts": {
"release:major": "generate-changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
"release:minor": "generate-changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
"release:patch": "generate-changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish",
"prepublish": "npm run compile",
"compile": "./node_modules/.bin/babel ./src/ --out-dir ./lib/",
"lint": "eslint ./src --fix",
"test": "ava ./tests/index.test.js",
"watch": "npm-scripts-watcher",
"example": "webpack-dev-server"
},
"main": "./lib/index.js",
"watch": {
"src/**/*.js": [
"compile"
]
},
"keywords": [
"react",
"hook",
"visible",
"intersection",
"dom",
"show",
"hide"
],
"ava": {
"require": [
"./test-setup.js"
]
},
"license": "MIT",
"peerDependencies": {
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.9.0",
"babel-core": "^6.7.4",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.1.18",
"babel-register": "^6.6.0",
"browser-env": "^3.2.5",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-avraam": "^1.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.11.1",
"generate-changelog": "^1.7.1",
"raf": "^3.4.0",
"react-addons-test-utils": "^15.4.2",
"react-scripts": "latest",
"react-test-renderer": "^16.7.0-alpha.0",
"sinon": "^7.1.0"
},
"dependencies": {
"intersection-observer": "^0.5.1",
"react": "^16.7.0-alpha.0"
}
}