forked from gidztech/jest-puppeteer-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.76 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
{
"name": "jest-puppeteer-docker",
"version": "1.3.0",
"description": "Jest plugin that allows you to run your Jest tests against a Chrome instance running in Docker.",
"main": "lib/index.js",
"scripts": {
"test": "npm run unit && npm run e2e",
"unit": "jest -c src/tests/jest.config.js",
"e2e": "cross-env process.env.JEST_PUPPETEER_CONFIG=example/jest-puppeteer.config.js jest panel.test.js -c example/jest.config.js",
"lint": "eslint **/*.js --fix --ignore-pattern node_modules",
"prettier": "prettier --write --single-quote --tab-width=4 */**.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --tab-width=4",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/gidztech/jest-puppeteer-docker.git"
},
"author": "Gideon Pyzer",
"license": "MIT",
"bugs": {
"url": "https://github.com/gidztech/jest-puppeteer-docker/issues"
},
"homepage": "https://github.com/gidztech/jest-puppeteer-docker#readme",
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^5.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"express": "^4.16.4",
"husky": "^0.14.3",
"jest": "^24.5.0",
"jest-html-reporter": "^2.5.0",
"jest-image-snapshot": "^2.8.1",
"lint-staged": "^7.2.0",
"mock-require": "^3.0.2",
"prettier": "^1.13.7",
"puppeteer": "^1.13.0",
"puppeteer-extensions": "^1.0.0"
},
"dependencies": {
"docker-chromium": "^1.1.0",
"find-node-modules": "^2.0.0",
"jest-puppeteer": "^4.1.0"
}
}