forked from richtr/NoSleep.js
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
44
{
"name": "nosleep.js",
"version": "0.9.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",
"repository": {
"type": "git",
"url": "https://github.com/richtr/NoSleep.js.git"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.7.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"standard": "^10.0.2",
"standard-loader": "^6.0.1",
"webpack": "^3.0.0"
},
"homepage": "https://github.com/richtr/NoSleep.js",
"bugs": {
"url": "https://github.com/richtr/NoSleep.js/issues"
},
"scripts": {
"lint": "eslint src",
"build": "npm run lint && webpack"
}
}