-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1003 Bytes
/
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
{
"name": "karma-prerollup-plugin",
"version": "1.0.1",
"description": "A Karma preprocessor plugin to offer seamless integration with Rollup.",
"main": "dist/rollup-prerollup-karma.js",
"scripts": {
"test": "jest --coverage",
"coverage": "cat ./test/coverage/lcov.info | coveralls",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/karma-prerollup-plugin.git"
},
"keywords": [
"Karma",
"Rollup"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/karma-prerollup-plugin/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/karma-prerollup-plugin#readme",
"dependencies": {
"rollup": "^0.41.6"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-preset-latest": "^6.24.1",
"coveralls": "^2.13.1",
"jest": "^20.0.4",
"regenerator-runtime": "^0.10.5",
"rollup-plugin-buble": "^0.15.0"
}
}