-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 2.7 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "tib",
"version": "0.7.5",
"description": "Easy e2e browser testing in Node",
"main": "lib/tib.js",
"module": "src/index.js",
"repository": "https://github.com/nuxt-contrib/tib",
"author": "pimlie <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf lib && rollup -c scripts/rollup.config.js",
"coverage": "codecov",
"lint": "eslint src test",
"prerelease": "git checkout master && git pull -r",
"release": "yarn lint && yarn test && yarn build && standard-version",
"postrelease": "git push origin master --follow-tags && yarn publish",
"test": "yarn test:unit && yarn test:e2e",
"test:unit": "jest test/unit",
"test:e2e": "jest test/e2e"
},
"files": [
"lib",
"src"
],
"keywords": [
"selenium",
"puppeteer",
"browser",
"testing",
"end to end",
"e2e",
"browserstack",
"saucelabs",
"jest"
],
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/parser": "^7.12.10",
"babel-loader": "^8.2.2",
"glob": "^7.1.6",
"hable": "^3.0.0",
"signal-exit": "^3.0.3",
"tree-kill": "^1.2.2",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.10.1"
},
"devDependencies": {
"@babel/node": "^7.12.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.10",
"add": "^2.0.6",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"browserstack-local": "^1.4.8",
"chromedriver": "^87.0.2",
"codecov": "^3.8.1",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.2.0",
"finalhandler": "^1.1.2",
"geckodriver": "^1.21.1",
"jest": "^26.6.3",
"jsdom": "^16.4.0",
"lodash.defaultsdeep": "^4.6.1",
"node-env-file": "^0.1.8",
"puppeteer": "^5.5.0",
"puppeteer-core": "^5.5.0",
"rimraf": "^3.0.2",
"rollup": "^2.34.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"selenium-webdriver": "^4.0.0-alpha.8",
"serve-static": "^1.14.1",
"standard-version": "^9.0.0",
"yarn": "^1.22.10"
},
"peerDependencies": {
"browserstack-local": "^1.4.8",
"chromedriver": "^87.0.2",
"geckodriver": "^1.21.1",
"jsdom": "^16.4.0",
"puppeteer": "^5.5.0",
"puppeteer-core": "^5.5.0",
"selenium-webdriver": "^4.0.0-alpha.8",
"serve-static": "^1.14.1"
}
}