-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.1 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
{
"name": "@mochify/cli",
"version": "0.4.1",
"description": "Run mocha tests in headless browsers from the command line",
"homepage": "https://github.com/mochify-js/cli",
"bin": {
"mochify": "index.js"
},
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "echo \"No unit tests yet\"",
"test:integration": "mocha --timeout 10000 -R spec '**/*.integration.js'",
"build": "tsc --project tsconfig.pack.json",
"clean": "rimraf --glob '!(node_modules)/**/*.d.ts' '*.d.ts'",
"prepack": "npm run build",
"postpack": "npm run clean",
"preversion": "npm run lint && npm run prettier:check && tsc && npm test && npm run test:integration",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish",
"prettier:check": "prettier --check '**/*.{js,json,md}'",
"prettier:write": "prettier --write '**/*.{js,json,md}'",
"prepare": "husky install && playwright install"
},
"keywords": [
"mocha",
"browser",
"testing",
"headless",
"cli"
],
"author": "Maximilian Antoni <[email protected]> (http://maxantoni.de)",
"license": "MIT",
"engines": {
"node": ">=16"
},
"eslintConfig": {
"extends": "@studio"
},
"mocha": {
"reporter": "dot",
"require": "test/hooks.js",
"ignore": "node_modules/**"
},
"dependencies": {
"@mochify/mochify": "^0.5.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@mochify/driver-jsdom": "^0.3.0",
"@mochify/driver-playwright": "^0.3.0",
"@mochify/driver-puppeteer": "^0.3.0",
"@mochify/driver-webdriver": "^0.2.0",
"@sinonjs/referee-sinon": "^11.0.0",
"@studio/changes": "^3.0.0",
"@studio/eslint-config": "^6.0.0",
"@studio/related-tests": "^0.2.0",
"@studio/tsconfig": "^1.3.0",
"@types/node": "^20.10.5",
"eslint": "^8.56.0",
"execa": "^5.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"mocha": "^10.2.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"files": [
"**/*.js",
"**/*.d.ts",
"!**/*.test.js",
"!test/**",
"!.*"
]
}