-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
84 lines (84 loc) · 2.24 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
77
78
79
80
81
82
83
84
{
"name": "karma-viewport",
"version": "1.0.9",
"description": "A Karma plugin for testing responsive features and layout",
"keywords": [
"breakpoint",
"iframe",
"karma",
"karma-framework",
"karma-plugin",
"responsive",
"testing",
"viewport"
],
"homepage": "https://github.com/squidfunk/karma-viewport",
"bugs": {
"url": "https://github.com/squidfunk/karma-viewport/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Martin Donath",
"email": "[email protected]"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/squidfunk/karma-viewport.git"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "make build",
"clean": "make clean",
"lint": "make lint",
"test": "make test",
"test:integration": "make test-integration",
"watch": "make watch"
},
"dependencies": {
"@types/karma": "^6.3.3",
"jsonschema": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@types/chance": "^1.1.3",
"@types/jasmine": "^3.5.14",
"@types/jsonschema": "^1.1.1",
"@types/karma-fixture": "^0.2.5",
"@types/node": "^17.0.23",
"@types/webpack": "^5.28.0",
"array-findindex-polyfill": "^0.1.0",
"babel-loader": "^8.2.4",
"chance": "^1.1.8",
"codecov": "^3.8.2",
"es6-promise": "^4.2.8",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.6.0",
"karma": "^6.3.17",
"karma-chrome-launcher": "^3.1.1",
"karma-clear-screen-reporter": "^1.0.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^2.1.2",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-jasmine": "^4.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "^0.0.33",
"karma-summary-reporter": "^3.1.1",
"karma-webpack": "^4.0.2",
"project-name-generator": "^2.1.9",
"ts-loader": "^8.0.3",
"ts-node": "^10.7.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"tslint": "^6.1.3",
"typescript": "^4.6.3",
"webpack": "^4.44.1",
"webpack-cli": "^4.0.0"
}
}