-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.86 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
{
"name": "bs-react-is-visible",
"description": "A small library for ReasonReact to know if an element is visible on screen or not",
"version": "0.2.1",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bsb -make-world",
"clean": "bsb -clean-world",
"dev": "parcel examples/index.html",
"example:build": "rm -rf docs && parcel build examples/index.html -d docs",
"example": "npm run build && npm run dev",
"prepare": "npm run build",
"start": "bsb -make-world -w",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"BuckleScript",
"ReasonML",
"intersection observer",
"visible",
"invisible",
"visibility",
"on screen"
],
"author": "lessp <[email protected]>",
"license": "MIT",
"main": "./src/ReactIsVisible.re",
"files": [
"src/*.re",
"bsconfig.json"
],
"peerDependencies": {
"react": ">=16.8.0",
"reason-react": ">=0.7.0"
},
"dependencies": {
"bs-webapi": "^0.14.3",
"react-is-visible": "^1.1.1"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.8",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.3.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/npm": "^5.2.0",
"@semantic-release/release-notes-generator": "^7.3.0",
"bs-platform": "^5.0.1",
"bs-react-testing-library": "^0.5.0",
"intersection-observer": "^0.6.0",
"lodash": ">=4.17.13",
"parcel-bundler": "^1.12.3",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"reason-react": ">=0.7.0",
"semantic-release": "^15.13.24"
},
"homepage": "https://github.com/lessp/bs-react-is-visible#readme",
"repository": {
"type": "git",
"url": "https://github.com/lessp/bs-react-is-visible.git"
},
"bugs": {
"url": "https://github.com/lessp/bs-react-is-visible/issues"
}
}