-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "docketeer",
"version": "1.2.0",
"description": "A tiny application that lets you use a dockerised browser for Puppeteer",
"module": "./src/index.js",
"type": "module",
"bin": {
"docketeer": "./src/index.js"
},
"scripts": {
"prettier": "npx prettier --write **/*.js",
"prettier:check": "npx prettier --check **/*.js",
"test": "node --experimental-vm-modules $(npm bin)/jest",
"test:watch": "npm test -- --watch"
},
"author": "Andy Earnshaw",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/andyearnshaw/docketeer.git"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"moduleNameMapper": {
"child_process": "<rootDir>/src/__mocks__/child_process.js"
},
"testMatch": [
"**/?(*.)+(spec|test).js"
],
"transform": {}
},
"keywords": [
"puppeteer",
"docker",
"testing",
"chrome",
"chromium",
"firefox"
],
"bugs": {
"url": "https://github.com/andyearnshaw/docketeer/issues"
},
"homepage": "https://github.com/andyearnshaw/docketeer#readme",
"devDependencies": {
"jest": "^28.1.0",
"prettier": "^2.6.2"
}
}