-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
82 lines (82 loc) · 2.63 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
{
"name": "karma-qunit",
"version": "4.2.1",
"description": "A Karma plugin. Adapter for QUnit testing framework.",
"main": "lib/index.js",
"scripts": {
"build": "grunt build",
"lint": "eslint .",
"karma": "npm run karma:adapter && npm run karma:simplequnit",
"karma:adapter": "karma start karma.conf.js --single-run",
"karma:simplequnit": "karma start examples/simple/karma.conf.js --single-run",
"mocha": "mocha test/lib",
"test": "npm run lint && npm run build && npm run karma && npm run mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/karma-runner/karma-qunit.git"
},
"bugs": {
"url": "https://github.com/karma-runner/karma-qunit/issues"
},
"homepage": "https://github.com/karma-runner/karma-qunit#readme",
"keywords": [
"karma",
"karma-plugin",
"karma-adapter",
"qunit"
],
"files": [
"lib/*.js"
],
"author": "Vojta Jina <[email protected]>",
"dependencies": {},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-standard": "^15.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^4.1.0",
"grunt": "^1.4.1",
"grunt-bump": "^0.8.0",
"grunt-npm": "0.0.2",
"karma": "^6.3.9",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.1",
"mocha": "^9.1.3",
"qunit": "^2.17.2"
},
"peerDependencies": {
"karma": "^4.0.0 || ^5.0.0 || ^6.0.0",
"qunit": ">=2.1.1"
},
"license": "MIT",
"contributors": [
"Friedel Ziegelmayer <[email protected]>",
"XhmikosR <[email protected]>",
"Vojta Jina <[email protected]>",
"dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"johnjbarton <[email protected]>",
"Timo Tijhof <[email protected]>",
"Matt DuVall <[email protected]>",
"masubi <[email protected]>",
"Johann-S <[email protected]>",
"Aymeric Beaumet <[email protected]>",
"Mark Ethan Trostler <[email protected]>",
"Stefan Sechelmann <[email protected]>",
"Aliaksei Sapach <[email protected]>",
"Ulrich Block <[email protected]>",
"Brian Donovan <[email protected]>",
"Daniel Herman <[email protected]>",
"Kristof Neirynck <[email protected]>",
"Marcin Szczepanski <[email protected]>",
"Sahat Yalkabov <[email protected]>",
"Stefan Dragnev <[email protected]>",
"Tim Robertson <[email protected]>",
"Volker Buzek <[email protected]>",
"pallxk <[email protected]>",
"thenickcox <[email protected]>"
]
}