-
Notifications
You must be signed in to change notification settings - Fork 780
/
package.json
129 lines (129 loc) · 3.83 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "qunit",
"title": "QUnit",
"description": "The powerful, easy-to-use testing framework.",
"version": "3.0.0-alpha.4",
"homepage": "https://qunitjs.com",
"author": {
"name": "OpenJS Foundation and other contributors",
"url": "https://github.com/qunitjs/qunit/blob/main/AUTHORS.txt"
},
"repository": {
"type": "git",
"url": "git://github.com/qunitjs/qunit.git"
},
"keywords": [
"testing",
"unit",
"assert",
"assertion",
"tap",
"tape",
"karma",
"jquery"
],
"bugs": {
"url": "https://github.com/qunitjs/qunit/issues"
},
"license": "MIT",
"bin": {
"qunit": "bin/qunit.js"
},
"files": [
"bin/",
"src/cli/",
"qunit/",
"LICENSE.txt"
],
"main": "qunit/qunit.js",
"exports": {
".": {
"node": {
"import": "./qunit/esm/qunit-wrapper-nodejs-module.js",
"default": "./qunit/qunit.js"
},
"module": {
"import": "./qunit/esm/qunit.module.js",
"default": "./qunit/qunit-wrapper-bundler-require.js"
},
"import": "./qunit/esm/qunit.module.js",
"default": "./qunit/qunit.js"
},
"./qunit/qunit.css": "./qunit/qunit.css"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "12.1.0",
"node-watch": "0.7.4",
"tiny-glob": "0.2.9"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/plugin-external-helpers": "7.25.9",
"@babel/preset-env": "7.25.4",
"@qunitjs/browserstack-runner": "0.9.5-qunitjs.2",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.7",
"benchmark": "2.1.4",
"eslint": "^8.57.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-compat": "^6.0.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json-es": "^1.6.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-qunit": "^8.1.1",
"fixturify": "^3.0.0",
"fuzzysort": "1.2.1",
"grunt": "1.6.1",
"grunt-contrib-connect": "5.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-qunit": "^10.1.1",
"grunt-search": "0.1.8",
"kleur": "4.1.5",
"npm-reporter": "file:./test/cli/fixtures/npm-reporter",
"nyc": "^17.0.0",
"proxyquire": "2.1.3",
"requirejs": "2.3.7",
"rollup": "4.21.3",
"tap-min": "3.0.0"
},
"scripts": {
"build": "rollup -c && grunt copy",
"build-coverage": "rollup -c --environment BUILD_TARGET:coverage && grunt copy",
"build-dev": "node build/dev.js",
"benchmark": "npm install --silent --no-audit --prefix test/benchmark/ && node test/benchmark/micro.js",
"lint": "eslint --cache .",
"lint-fix": "eslint --cache --fix .",
"test-main": "grunt test",
"test-cli": "node bin/qunit.js test/main/ test/cli/*.js",
"test": "npm run lint && npm run build && npm run test-main && npm run test-cli",
"test-nolint": "npm run build && npm run test-main && npm run test-cli",
"test-demos": "npm run build && node bin/qunit.js demos/*.{mjs,js}",
"browserstack": "browserstack-runner -v",
"authors": "(echo 'Authors ordered by first contribution\n' && git log --format='%aN <%aE>' --no-merges --reverse | awk '!seen[$0]++') | tee AUTHORS.txt",
"coverage": "npm run build-coverage && npm run coverage-cli && npm run coverage-main && nyc report",
"coverage-cli": "nyc --use-spawn-wrap --silent bin/qunit.js test/cli/*.js",
"coverage-main": "nyc instrument --in-place qunit/ && grunt connect:base qunit"
},
"nyc": {
"include": [
"bin/**",
"qunit/**",
"src/**"
],
"reporter": [
"text",
"html",
"clover"
],
"report-dir": "coverage"
}
}