-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "jest-environment-browserstack",
"version": "2.0.0",
"description": "an environment for using Browserstack with Jest",
"private": true,
"homepage": "https://github.com/taktakpeops/jest-environment-browserstack#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/taktakpeops/jest-environment-browserstack.git"
},
"engines": {
"node": ">= 10.15.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"lint": "yarn workspaces run lint",
"lint:fix": "eslint --ext .ts src/* --fix",
"prettier": "prettier --write \"**/*.{md,ts}\"",
"test": "yarn workspaces run test",
"publish:prerelease": "lerna publish prerelease --no-git-tag-version --yes",
"publish:release": "lerna publish --yes"
},
"keywords": [
"jest",
"browserstack",
"e2e",
"visual-testing",
"test",
"integration-test"
],
"author": "taktakpeops",
"license": "MIT",
"devDependencies": {
"@types/jest": "~27.0.1",
"@types/node": "~14.17.5",
"@typescript-eslint/eslint-plugin": "~4.32.0",
"eslint": "~7.32.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~24.4.0",
"eslint-plugin-prettier": "~3.4.1",
"jest": "~27.0.6",
"prettier": "~2.3.2",
"ts-jest": "~27.0.5",
"typescript": "~3.8.3"
},
"dependencies": {
"@typescript-eslint/parser": "^4.30.0",
"lerna": "~4.0.0"
},
"resolutions": {
"minimist": ">=0.2.1 <1.0.0 || >=1.2.5"
}
}