forked from ttsvetko/HTML5-Desktop-Notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (51 loc) · 1.41 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
{
"name": "html5-notification",
"libraryName": "HTML5 Notification",
"description": "Notification polyfill",
"version": "3.0.0",
"homepage": "https://github.com/ttsvetko/HTML5-Desktop-Notifications",
"bugs": {
"url": "https://github.com/ttsvetko/HTML5-Desktop-Notifications/issues",
"email": "[email protected]"
},
"author": {
"name": "Tsvetan Tsvetkov",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ttsvetko/HTML5-Desktop-Notifications.git"
},
"engines": {
"node": ">=5"
},
"devDependencies": {
"bower": "latest",
"grunt": "latest",
"grunt-cli": "latest",
"grunt-contrib-clean": "latest",
"grunt-contrib-uglify": "latest",
"grunt-contrib-watch": "latest",
"grunt-eslint": "latest",
"karma": "latest",
"jasmine-core": "latest",
"phantomjs-prebuilt": "latest",
"karma-chrome-launcher": "latest",
"karma-firefox-launcher": "latest",
"karma-ie-launcher": "latest",
"karma-jasmine": "latest",
"karma-opera-launcher": "latest",
"karma-safari-launcher": "latest",
"load-grunt-config": "latest",
"time-grunt": "latest"
},
"dependencies": {},
"scripts": {
"bower": "bower",
"grunt": "grunt -v",
"grunt:dev": "grunt -v dev",
"karma": "karma start",
"test": "karma start --browsers Firefox --single-run"
},
"private": false
}