forked from sindresorhus/screenfull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 836 Bytes
/
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
{
"name": "screenfull",
"version": "3.0.0",
"description": "Simple wrapper for cross-browser usage of the JavaScript Fullscreen API, which lets you bring the page or any element into fullscreen.",
"license": "MIT",
"repository": "sindresorhus/screenfull.js",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=0.10.0"
},
"main": "dist/screenfull.js",
"files": [
"dist/screenfull.js"
],
"keywords": [
"browser",
"fullscreen"
],
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-uglify": "^0.10.1",
"load-grunt-tasks": "^3.3.0",
"xo": "*"
},
"scripts": {
"test": "xo"
},
"xo": {
"envs": [
"node",
"browser"
]
}
}