-
Notifications
You must be signed in to change notification settings - Fork 380
/
package.json
39 lines (39 loc) · 953 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": "nosleep.js",
"version": "0.12.0",
"author": "Rich Tibbett",
"license": "MIT",
"description": "Prevent display sleep and enable wake lock in any Android or iOS web browser",
"keywords": [
"nosleep",
"wake lock",
"wakelock",
"screen",
"display",
"sleep"
],
"main": "dist/NoSleep.min.js",
"module": "src/index.js",
"types": "nosleep.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/richtr/NoSleep.js.git"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"prettier": "^2.0.5",
"terser-webpack-plugin": "^3.0.2",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.11"
},
"homepage": "https://github.com/richtr/NoSleep.js",
"bugs": {
"url": "https://github.com/richtr/NoSleep.js/issues"
},
"scripts": {
"lint": "prettier --check src",
"build": "npm run lint && webpack"
}
}