-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "fscreen",
"version": "1.2.0",
"description": "Vendor agnostic access to the fullscreen spec api",
"main": "dist/fscreen.cjs.js",
"module": "dist/fscreen.esm.js",
"sideEffects": false,
"scripts": {
"build": "rollpkg build",
"watch": "rollpkg watch",
"prepublishOnly": "npm run build",
"lintStaged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafgraph/fscreen.git"
},
"files": [
"dist"
],
"keywords": [
"fullscreen",
"browser"
],
"author": "Rafael Pedicini <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rafgraph/fscreen/issues"
},
"homepage": "https://github.com/rafgraph/fscreen#readme",
"devDependencies": {
"lint-staged": "^10.5.4",
"pre-commit": "^1.2.2",
"rollpkg": "^0.5.5"
},
"pre-commit": "lintStaged",
"lint-staged": {
"(src/**/*|demo/src/**/*)": [
"prettier --write --ignore-unknown"
]
},
"prettier": "rollpkg/configs/prettier.json"
}