-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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": "angular-activity-monitor",
"version": "1.1.1",
"description": "An Angular service that tracks users' DOM activity",
"main": "activity-monitor.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "karma start",
"build": "uglifyjs activity-monitor.js -o activity-monitor.min.js --screw-ie8 -c -m"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sean3z/angular-activity-monitor.git"
},
"keywords": [
"angular",
"activity-monitor",
"keepalive",
"timeout",
"idle",
"user"
],
"author": "Sean Wragg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sean3z/angular-activity-monitor/issues"
},
"homepage": "http://sean3z.github.io/angular-activity-monitor",
"devDependencies": {
"angular": "~1.6",
"angular-mocks": "~1.4.9",
"chai": "~3.5.0",
"eslint": ">=4.18.2",
"karma": "~4.2",
"karma-chai": "~0.1.0",
"karma-mocha": "~0.2.1",
"karma-phantomjs-launcher": "~1.0.0",
"mocha": "~6.2",
"phantomjs-prebuilt": "~2.1.3",
"uglify-js": "~2.6.1"
},
"dependencies": {}
}