-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "@boozingeorge/parallel-cypress",
"version": "0.0.21",
"description": "cli tool for run cypress test on the multi-process mode",
"keywords": [
"cypress",
"multi-process",
"parallel",
"cli"
],
"main": "cli.js",
"files": [
"cjs",
"cli.js"
],
"bin": {
"parallel-cypress": "cli.js",
"@boozingeorge/parallel-cypress": "cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "rm -rf cjs && tsc --project tsconfig.json --watch",
"build": "rm -rf cjs && tsc --project tsconfig.json",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"lint": "eslint ./src --quiet --ext .js,.ts,.tsx --config ./.eslintrc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boozingeorge/parallel-cypress.git"
},
"author": "George Boozin <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/boozingeorge/parallel-cypress/issues"
},
"homepage": "https://github.com/boozingeorge/parallel-cypress#readme",
"dependencies": {
"chalk": "^4.1.0",
"glob": "^7.1.6",
"pretty-hrtime": "^1.0.3",
"yargs": "^16.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@boozingeorge/config": "0.0.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.8",
"@types/yargs": "^15.0.10",
"babel-jest": "^26.6.3",
"eslint": "^7.13.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
}
}