-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "roc-plugin-test-mocha-karma-webpack",
"version": "1.0.1-alpha.0",
"description": "Adds a way to easily test Webpack projects for the web in Roc",
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"roc",
"roc-plugin",
"webpack",
"karma",
"mocha",
"test"
],
"repository": "https://github.com/rocjs/extensions",
"author": "Schibsted",
"contributors": [
{
"name": "Gustaf Dalemar"
}
],
"license": "MIT",
"dependencies": {
"babel-core": "^6.10.4",
"babel-plugin-istanbul": "~2.0.1",
"expect": "~1.20.1",
"karma": "~0.13.22",
"karma-coverage": "~0.5.5",
"karma-failed-reporter": "~0.0.3",
"karma-mocha": "~1.0.1",
"karma-phantomjs-launcher": "~1.0.0",
"karma-sourcemap-loader": "~0.3.7",
"karma-spec-json-reporter": "~0.0.8",
"karma-spec-reporter": "~0.0.26",
"karma-webpack": "~1.7.0",
"micromatch": "~2.3.8",
"mocha": "~2.4.5",
"phantomjs-prebuilt": "~2.1.7",
"roc": "^1.0.0-rc.23",
"roc-abstract-plugin-test": "^1.0.0"
},
"roc": {
"packages": [
"./lib/index.js"
]
}
}