-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
97 lines (97 loc) · 2.67 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "karma-detect-browsers",
"description": "Karma runner plugin for detecting all browsers installed on the current system.",
"version": "2.3.3",
"homepage": "https://github.com/litixsoft/karma-detect-browsers",
"author": {
"name": "Litixsoft GmbH",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Timo Liebetrau",
"email": "[email protected]"
},
{
"name": "Marco Kannenberg",
"email": "[email protected]"
},
{
"name": "Andreas Krummsdorf",
"email": "[email protected]"
},
{
"name": "Sven Bernstein",
"email": "[email protected]"
},
{
"name": "Thomas Scheibe",
"email": "[email protected]"
}
],
"contributors": [
"Terin Stock <[email protected]>",
"安坚实 <[email protected]>",
"John Vilk <[email protected]>",
"Marcos Caceres <[email protected]>",
"Nick McCurdy <[email protected]>",
"Esref Durna",
"Jonathan Felchlin <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/litixsoft/karma-detect-browsers.git"
},
"bugs": {
"url": "https://github.com/litixsoft/karma-detect-browsers/issues"
},
"keywords": [
"karma-plugin",
"karma-launcher",
"browser",
"browsers",
"Safari",
"Safari Tech Preview",
"SafariTechPreview",
"IE",
"Edge",
"Chrome",
"Chrome Canary",
"Chrome Headless",
"Chromium",
"Firefox",
"Opera"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/litixsoft/karma-detect-browsers/blob/master/LICENSE"
}
],
"main": "index.js",
"scripts": {
"test": "grunt demo"
},
"devDependencies": {
"grunt": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-karma": "^2.0.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "*",
"karma-edge-launcher": "*",
"karma-firefox-launcher": "*",
"karma-ie-launcher": "*",
"karma-jasmine": "^1.1.0",
"karma-opera-launcher": "*",
"karma-phantomjs-launcher": "*",
"karma-safari-launcher": "*",
"karma-safaritechpreview-launcher": "*",
"phantomjs-prebuilt": "2.1.16"
},
"dependencies": {
"which": "^1.2.4"
}
}