-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.88 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
{
"name": "@klaveness/cypress-parallel",
"version": "1.2.0",
"author": "Jonas Amundsen",
"license": "MIT",
"homepage": "https://github.com/klaveness/cypress-parallel",
"repository": {
"type": "git",
"url": "https://github.com/klaveness/cypress-parallel.git"
},
"keywords": [
"cypress",
"cypress-parallel"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"knapsack-reporter.js",
"knapsack-reporter.d.ts"
],
"bin": {
"cypress-parallel": "./bin/cypress-parallel"
},
"scripts": {
"clean": "rm -f knapsack-reporter.{js,d.ts} && bash -O globstar -c 'rm -f lib/**/*.{js,d.ts}'",
"build": "tsc",
"watch": "tsc --watch",
"fmt": "prettier --ignore-path .gitignore --write '**/*.ts'",
"test": "npm run test:fmt && npm run test:integration",
"test:fmt": "prettier --ignore-path .gitignore --check '**/*.ts'",
"test:integration": "cucumber-js",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"dependencies": {
"@badeball/cypress-configuration": "^1.0.0",
"commander": "^8.1.0",
"cosmiconfig": "^7.0.1",
"cypress-multi-reporters": "^1.5.0",
"is-npm": "^5.0.0",
"shell-quote": "^1.7.2"
},
"devDependencies": {
"@cucumber/cucumber": "^8.0.0",
"@cucumber/pretty-formatter": "^1.0.0-alpha.1",
"@types/debug": "^4.1.7",
"@types/mocha": "^9.1.0",
"@types/shell-quote": "^1.7.1",
"@types/stream-buffers": "^3.0.4",
"cypress": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"dtslint": "^4.0.5",
"esbuild": "^0.11.12",
"mocha": "^8.2.0",
"prettier": "^2.2.1",
"stream-buffers": "^3.0.2",
"strip-indent": "^3.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"cypress": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
}
}