-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.7 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
{
"name": "warlock-spell-karma",
"version": "1.0.0-alpha.1",
"description": "An addon to add Karma unit testing support to the Warlock spell for managing client-side webapps.",
"homepage": "https://github.com/ngbp/spell-karma",
"author": {
"name": "Warlock Team",
"url": "http://getwarlock.com"
},
"repository": {
"type": "git",
"url": "git://github.com/ngbp/spell-karma.git"
},
"bugs": {
"url": "https://github.com/ngbp/spell-karma"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ngbp/spell-karma/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 0.10.0"
},
"keywords": [
"warlockplugin",
"warlockspell"
],
"warlock": {
"globs": {
"source": {
"test": [
"<%= paths.source_app %>/**/*.spec.js"
]
},
"vendor": {
"test": []
}
},
"tasks": {
"karma": {
"single-run": {
"port": 9018,
"runnerPort": 9100,
"urlRoot": "/",
"frameworks": [
"jasmine"
],
"preprocessors": [
"karma-jasmine",
"karma-firefox-launcher",
"karma-chrome-launcher",
"karma-phantomjs-launcher"
],
"reporters": "progress",
"logLevel": "WARN",
"singleRun": 1,
"autoWatch": 0
}
}
}
},
"peerDependencies": {
"warlock-spell-webapp": ">=1.0.0-alpha.2"
},
"dependencies": {
"glob-stream": "^3.1.9",
"karma": "~0.12",
"karma-chrome-launcher": "~0.1",
"karma-firefox-launcher": "~0.1",
"karma-jasmine": "~0.1",
"karma-phantomjs-launcher": "~0.1",
"vinyl": "^0.2.3"
}
}