forked from Second-Live/karma-up
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.31 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
{
"name": "karma-up",
"description": "Spectacular Test Runner for JavaScript.",
"homepage": "https://github.com/Second-Live/karma-up",
"repository": {
"type": "git",
"url": "[email protected]:Second-Live/karma-up.git"
},
"bugs": {
"url": "https://github.com/Second-Live/karma-up/issues"
},
"keywords": [
"karma",
"spectacular",
"runner",
"karma",
"js",
"javascript",
"testing",
"test",
"remote",
"execution"
],
"author": "Vojta Jína <[email protected]>",
"dependencies": {
"ansis": "^3.3.2",
"body-parser": "^1.20.3",
"braces": "^3.0.3",
"chokidar": "^4.0.1",
"connect": "^3.7.0",
"di": "^0.0.1",
"glob": "^10.4.5",
"graceful-fs": "^4.2.11",
"http-proxy": "^1.18.1",
"isbinaryfile": "^5.0.4",
"lodash": "^4.17.21",
"log4js": "^6.9.1",
"mime": "^3.0.0",
"minimatch": "^9.0.5",
"qjobs": "^1.2.0",
"range-parser": "^1.2.1",
"source-map": "^0.6.1",
"tmp": "^0.2.3",
"ua-parser-js": "^1.0.39",
"ws": "^8.18.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"@cucumber/cucumber": "^11.0.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jasmine-core": "^5.4.0",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-junit-reporter": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.8",
"karma-script-launcher": "^1.0.0",
"karma-up": ".",
"mocha": "^10.8.2",
"mocks": "^0.0.15",
"proxyquire": "^2.1.3",
"puppeteer": "^10.4.0",
"rollup": "^4.26.0",
"semantic-release": "^22.0.5",
"sinon": "18.0.1",
"sinon-chai": "^3.7.0",
"supertest": "^7.0.0",
"timer-shim": "^0.3.0"
},
"main": "./lib/index",
"bin": {
"karma-up": "./bin/karma-up"
},
"engines": {
"node": ">= 18"
},
"version": "7.0.1",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext js --ignore-pattern *.tpl.js",
"lint:fix": "eslint . --ext js --ignore-pattern *.tpl.js --fix",
"commit:check": "commitlint --from HEAD~1",
"test:unit": "mocha \"test/unit/**/*.spec.js\"",
"test:e2e": "cucumber-js test/e2e/*.feature",
"test:client": "node bin/karma-up start test/client/karma.conf.js",
"test": "npm run test:unit && npm run test:e2e && npm run test:client",
"build": "node scripts/client.js build",
"build:check": "node scripts/client.js check",
"build:watch": "node scripts/client.js watch",
"test:integration": "./scripts/integration-tests.sh",
"semantic-release": "semantic-release",
"commitlint": "commitlint"
},
"mocha": {
"reporter": "dot",
"ui": "bdd",
"require": [
"test/unit/mocha-globals.js"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "none"
}
}