-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 984 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 984 Bytes
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
{
"name": "fullscreen-react",
"version": "1.0.5",
"description": "A React component that sets its children to fullscreen using the Fullscreen API.",
"main": "dist/index.js",
"scripts": {
"prepublish": "yarn run build",
"build": "babel index.js --out-dir ./dist",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liran/fullscreen-react.git"
},
"keywords": [
"fullscreen-react",
"react-fullscreen",
"fullscreen"
],
"author": "liran",
"license": "MIT",
"bugs": {
"url": "https://github.com/liran/fullscreen-react/issues"
},
"homepage": "https://github.com/liran/fullscreen-react#readme",
"peerDependencies": {
"react": "^16.8"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react": "^16.13.1"
},
"dependencies": {
"screenfull": "^5.0.2"
}
}