-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.18 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
{
"name": "browser-activity-monitor",
"version": "1.0.2",
"description": "A simple activity monitor to alert you when the user becomes active or inactive",
"main": "index.js",
"main:esnext": "index.2015.js",
"typings": "index.d.ts",
"scripts": {
"build": "rm ./*.d.ts; tsc -d -m es2015 -t es6 && mv ./index.js ./index.es2015.js && tsc -m commonjs -t es5;",
"pretest": "npm run build",
"prepublish": "npm test",
"test": "jest test.js",
"tdd": "npm run watch & jest --watch",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:coatue-oss/browser-activity-monitor.git"
},
"keywords": ["browser", "activity", "chrome", "pagevisibility", "visible", "hidden", "visibility", "open"],
"author": "Boris Cherny <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/coatue-oss/browser-activity-monitor/issues"
},
"homepage": "https://github.com/coatue-oss/browser-activity-monitor#readme",
"devDependencies": {
"@types/jest": "^21.1.0",
"jest": "^21.0.0",
"tslint": "^5.0.0",
"typescript": "^2.1.5"
},
"dependencies": {
"eventemitter2": "^4.0.0"
}
}