-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
{
"name": "puppeteer-scenario",
"version": "0.11.0-alpha.2",
"description": "Small lib that helps write declarative tests with puppeteer",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "rollup --config rollup.config.js",
"prepare": "npm run lint && npm test && npm run build",
"test": "jest",
"test:debug": "cross-env DEBUG_PUPPETEER_SCENARIO=true jest",
"lint": "eslint src examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gleb-lobastov/puppeteer-scenario.git"
},
"keywords": [
"puppeteer",
"testing",
"arrange",
"act",
"assert",
"scenario"
],
"author": "Gleb Lobastov",
"license": "MIT",
"bugs": {
"url": "https://github.com/gleb-lobastov/puppeteer-scenario/issues"
},
"homepage": "https://github.com/gleb-lobastov/puppeteer-scenario#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.3",
"jest": "^26.4.2",
"jest-puppeteer": "^4.4.0",
"prettier": "^2.0.2",
"puppeteer": "^5.3.0",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.3.2",
"rollup-plugin-babel": "^4.4.0"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.js"
],
"preset": "jest-puppeteer",
"testMatch": [
"**/__tests__/**/test-*.[jt]s?(x)"
]
}
}