forked from qunitjs/qunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.08 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
{
"name": "qunit",
"title": "QUnit",
"description": "The powerful, easy-to-use testing framework.",
"version": "2.17.2-pre",
"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/qunit.js",
"qunit/qunit.css",
"LICENSE.txt"
],
"main": "qunit/qunit.js",
"engines": {
"node": ">=10"
},
"dependencies": {
"commander": "7.2.0",
"node-watch": "0.7.2",
"tiny-glob": "0.2.9"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-external-helpers": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@qunitjs/browserstack-runner": "0.9.5-qunitjs.1",
"coveralls": "^3.1.1",
"eslint": "7.32.0",
"eslint-config-jquery": "^3.0.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-qunit": "^6.2.0",
"execa": "0.8.0",
"fixturify": "^2.1.1",
"fuzzysort": "^1.1.4",
"grunt": "^1.4.1",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-qunit": "^5.1.0",
"grunt-git-authors": "^3.2.0",
"grunt-search": "^0.1.8",
"kleur": "4.1.4",
"npm-reporter": "file:./test/cli/fixtures/npm-reporter",
"nyc": "^15.1.0",
"proxyquire": "^1.8.0",
"requirejs": "^2.3.6",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"semver": "^7.3.5"
},
"scripts": {
"build": "rollup -c && grunt copy:src-css",
"build:coverage": "rollup -c --environment BUILD_TARGET:coverage && grunt copy:src-css",
"test": "npm run test:lint && npm run build && grunt test && bin/qunit.js test/cli/*.js",
"test:lint": "eslint --cache .",
"test:main": "npm run build && grunt test",
"test:cli": "npm run build && bin/qunit.js test/main/ test/cli/*.js",
"test:integration": "npm run build && bin/qunit.js test/integration/*.js",
"build:dev": "node build/watch.js",
"browserstack": "browserstack-runner -v",
"authors": "grunt authors",
"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",
"coveralls-upload": "cat coverage/lcov.info | coveralls"
},
"nyc": {
"include": [
"bin/**",
"qunit/**",
"src/**"
],
"reporter": [
"text",
"html",
"lcovonly"
],
"report-dir": "coverage"
}
}