-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.42 KB
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
{
"name": "react-easyfullscreen",
"version": "1.1.2",
"description": "Component that performs fullscreen in DOM Elements",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"homepage": "https://react-fullscreen.netlify.com/",
"contributors": [
"André Lins <andrelucas01@hotmail.com> (https://andrelmlins.github.io/)",
"Leandro Alexandrino <alexandrinowd@gmail.com> (http://leandrino.me/)"
],
"scripts": {
"start": "react-dependency-scripts start",
"build": "react-dependency-scripts build",
"build:app": "react-dependency-scripts build-app",
"test": "react-dependency-scripts test",
"lint": "eslint src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrelmlins/react-fullscreen.git"
},
"keywords": [
"react",
"fullscreen"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/andrelmlins/react-fullscreen/issues"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.8.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.20.0",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dependency-scripts": "^1.0.0",
"react-dom": "^16.13.0"
},
"dependencies": {
"screenfull": "^5.0.2"
}
}