-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "karma-fuse-box",
"version": "1.1.0",
"description": "Use fuse-box with karma",
"main": "./lib/index.js",
"scripts": {
"test": "karma start karma.config.js",
"prepublishOnly": "npm test"
},
"author": {
"name": "Tobias Timm",
"email": "[email protected]",
"url": "https://twitter.com/TbsTimm"
},
"license": "MIT",
"repository": "https://github.com/TobiasTimm/karma-fuse-box.git",
"bugs": {
"url": "https://github.com/TobiasTimm/karma-fuse-box/issues"
},
"homepage": "https://github.com/TobiasTimm/karma-fuse-box#readme",
"keywords": [
"es2015",
"karma",
"modules",
"import",
"export",
"plugin",
"preprocessor",
"fuse-box"
],
"peerDependencies": {
"fuse-box": ">= 3.1.0"
},
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jasmine-core": "^2.99.1",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.1",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4"
},
"dependencies": {
"chokidar": "^2.0.2",
"fuse-box": "^3.1.3",
"lodash": "^4.17.5",
"typescript": "^2.7.2"
}
}