-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
67 lines (67 loc) · 1.74 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
{
"name": "js-reporters",
"version": "2.1.0",
"description": "Common reporter interface for JavaScript testing frameworks.",
"main": "dist/js-reporters.js",
"files": [
"dist/"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/qunitjs/js-reporters.git"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rollup -c",
"lint": "semistandard",
"test": "npm run test-unit && npm run test-integration && npm run test-browser && npm run lint",
"test-unit": "qunit 'test/unit/*.js'",
"test-integration": "qunit test/integration/adapters.js",
"test-browser": "karma start",
"test-browser-sauce": "karma start karma.conf.sauce.js",
"test-versions": "qunit test/versions/versions.js",
"coverage": "nyc qunit 'test/unit/*.js' test/integration/adapters.js"
},
"devDependencies": {
"@babel/core": "7.13.14",
"@babel/preset-env": "7.13.12",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "18.0.0",
"@rollup/plugin-node-resolve": "11.2.1",
"events": "3.3.0",
"jasmine": "3.7.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-firefox-launcher": "2.1.3",
"karma-qunit": "4.2.1",
"karma-rollup-preprocessor": "7.0.7",
"karma-sauce-launcher": "4.3.6",
"kleur": "4.1.4",
"mocha": "8.3.2",
"nyc": "15.1.0",
"qunit": "2.20.1",
"qunitjs": "1.23.1",
"rimraf": "3.0.2",
"rollup": "2.44.0",
"semistandard": "16.0.0",
"semver": "7.3.5",
"sinon": "1.17.4"
},
"overrides": {
"@types/puppeteer-core": "7.0.4"
},
"nyc": {
"include": [
"lib/**"
],
"reporter": [
"text",
"html",
"lcovonly"
],
"report-dir": "coverage"
}
}