-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "mocha-headless-chrome",
"version": "4.0.0",
"description": "Run client-side mocha tests in the command line through headless Chrome",
"main": "./lib/runner.js",
"typings": "./lib/runner.d.ts",
"bin": "./bin/start",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "node lib/cli -f ./example/example-page.html -o ./result/result.json -c ./result/coverage.json -w 801 -H 501 -a incognito",
"ts": "tsc ./example/example.ts && node ./example/example.js",
"help": "node lib/cli -h"
},
"repository": {
"type": "git",
"url": "git+https://github.com/direct-adv-interfaces/mocha-headless-chrome.git"
},
"keywords": [
"mocha",
"tests",
"puppeteer",
"headless-chrome"
],
"author": "dima117a@gmail.com",
"license": "MIT",
"types": "./runner.d.ts",
"bugs": {
"url": "https://github.com/direct-adv-interfaces/mocha-headless-chrome/issues"
},
"homepage": "https://github.com/direct-adv-interfaces/mocha-headless-chrome#readme",
"dependencies": {
"args": "^5.0.1",
"mkdirp": "^1.0.4",
"puppeteer": "^13.1.3"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^9.2.0",
"mocha-teamcity-reporter": "^3.0.0"
}
}