-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.77 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
{
"name": "mocha-play",
"description": "Run mocha tests in chromium, using webpack and playwright.",
"version": "7.0.5",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "dist/index.d.ts",
"bin": {
"mocha-play": "bin/mocha-play.js"
},
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "tsc --build",
"pretest": "npm run lint && npm run build",
"test": "npm run test:only",
"test:only": "mocha \"./dist/test/**/*.spec.js\"",
"lint": "eslint",
"prettify": "prettier . --write",
"prepack": "npm run build"
},
"peerDependencies": {
"mocha": ">=7",
"webpack": "^5.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"create-listening-server": "^2.1.0",
"express": "^4.21.2",
"find-up": "^7.0.0",
"glob": "^11.0.0",
"html-webpack-plugin": "^5.6.3",
"playwright-core": "^1.49.1",
"webpack-dev-middleware": "^7.4.2"
},
"devDependencies": {
"@playwright/browser-chromium": "^1.49.1",
"@ts-tools/webpack-loader": "^6.1.0",
"@types/chai": "^5.0.1",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.10",
"@types/node": "20",
"chai": "^5.1.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"mocha": "^11.0.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "~5.7.2",
"typescript-eslint": "^8.18.2",
"webpack": "^5.97.1"
},
"files": [
"bin",
"static",
"dist",
"!dist/test",
"src",
"!*/tsconfig.{json,tsbuildinfo}"
],
"prettier": {
"printWidth": 120,
"singleQuote": true
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"repository": "[email protected]:wixplosives/mocha-play.git"
}