-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "afk",
"version": "1.0.0",
"description": "Trigger an action when the activity status of the user changes",
"author": "Teamwork.com",
"main": "NodeAFK.js",
"files": ["NodeAFK.js"],
"keywords": [
"afk",
"keyboard",
"mouse",
"user idle",
"user inactive",
"user activity status"
],
"repository": {
"type": "git",
"url": "git://github.com/Teamwork/node-afk.git"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"coverage:check": "nyc check-coverage --lines 95",
"coverage:clean": "rimraf .nyc_output",
"lint": "eslint *.js",
"test": "nyc mocha *.spec.js",
"test:dev": "nodemon --exec npm test"
},
"dependencies": {
"desktop-idle": "1.1.1"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "13.0.0",
"eslint-plugin-import": "2.13.0",
"mocha": "5.2.0",
"nodemon": "1.18.3",
"nyc": "12.0.2",
"rimraf": "2.6.2",
"sinon": "6.1.3"
},
"nyc": {
"exclude": [
"**/*.spec.js"
]
}
}