-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
60 lines (60 loc) · 1.24 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "desktop-idle",
"version": "1.3.0",
"main": "index.js",
"license": "MIT",
"description": "Node/Electron module to detect idle desktop users(users away from keyboard) in macOS, Windows, Linux, FreeBSD and OpenBSD",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/bithavoc/node-desktop-idle/issues"
},
"keywords": [
"idle",
"desktop",
"electron",
"away",
"afk"
],
"homepage": "https://github.com/bithavoc/node-desktop-idle",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bithavoc/node-desktop-idle/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "[email protected]:bithavoc/node-desktop-idle.git"
},
"os": [
"windows",
"linux",
"darwin",
"win32",
"freebsd",
"openbsd"
],
"engines": {
"node": ">=7.9.0"
},
"devDependencies": {
"eslint": "^4.6.1",
"npm-watch": "^0.2.0",
"vows": "^0.8.1"
},
"watch": {
"test_watch": {
"patterns": [
"src",
"test"
],
"extensions": "js,mm,gyp,h,cc",
"legacyWatch": true
}
},
"scripts": {
"test_watch": "npm install && npm test",
"test": "node test/main_test.js",
"watch": "npm-watch"
}
}