-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 957 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-js-polyfills",
"version": "0.0.3",
"description": "karma plugin to inject js-polyfills.",
"main": "index.js",
"author": "Hiroki IKEDA <ikeda_hiroki@icloud.com>",
"license": "MIT",
"keywords": [
"karma",
"karma-plugin",
"polyfill",
"standards"
],
"dependencies": {
"js-polyfills": "^0.1.42"
},
"devDependencies": {
"chai": "^4.1.2",
"karma": "^6.0.2",
"karma-chai": "^0.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"mocha": "^8.0.1",
"npm-run-all": "^4.1.5"
},
"scripts": {
"test": "npm-run-all --parallel test:unit test:karma test:karma:polyfills",
"test:unit": "mocha test/unit_test.spec.js",
"test:karma": "karma start karma-without-polyfills.conf.js",
"test:karma:polyfills": "karma start karma-with-polyfills.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/h-ikeda/karma-js-polyfills.git"
}
}