-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "activity-detector",
"version": "3.0.0",
"description": "Detects when a user is really using your page and when he is idle",
"main": "dist/activity-detector.js",
"scripts": {
"test": "tape -r babel-register tests/**/*.js | faucet",
"lint": "eslint src/ tests/",
"build": "babel -d dist/ src/",
"build:umd": "webpack -p src/activity-detector.js dist/activity-detector.min.js",
"clean": "rimraf dist",
"prepublishonly": "npm run lint && npm test && npm run clean && npm run build && npm run build:umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuenti/activity-detector.git"
},
"keywords": [
"user",
"activity",
"away",
"idle",
"active"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/tuenti/activity-detector/issues"
},
"homepage": "https://github.com/tuenti/activity-detector#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"eslint": "^2.2.0",
"faucet": "0.0.1",
"jsdom": "8.0.4",
"rimraf": "^2.5.4",
"sinon": "^1.17.3",
"tape": "^4.4.0",
"webpack": "^1.12.14"
}
}