-
Notifications
You must be signed in to change notification settings - Fork 403
/
package.json
101 lines (101 loc) · 3 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
97
98
99
100
101
{
"name": "@klaveness/cypress-cucumber-preprocessor",
"version": "11.2.0",
"author": "Jonas Amundsen",
"license": "MIT",
"homepage": "https://github.com/Klaveness-Digital/cypress-cucumber-preprocessor",
"repository": {
"type": "git",
"url": "https://github.com/Klaveness-Digital/cypress-cucumber-preprocessor.git"
},
"keywords": [
"cypress",
"cypress-plugin",
"cypress-preprocessor"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"browser": "methods.js",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"browserify.js",
"browserify.d.ts",
"esbuild.js",
"esbuild.d.ts",
"methods.js",
"methods.d.ts",
"webpack.js",
"webpack.d.ts"
],
"scripts": {
"clean": "rm {browserify,esbuild,methods,webpack}.{js,d.ts} && bash -O globstar -c 'rm lib/**/*.{js,d.ts} test/**/*.{js,d.ts}'",
"build": "tsc",
"watch": "tsc --watch",
"fmt": "prettier --ignore-path .gitignore --write '**/*.ts'",
"test": "npm run test:fmt && npm run test:types && npm run test:unit && npm run test:integration",
"test:fmt": "prettier --ignore-path .gitignore --check '**/*.ts'",
"test:types": "dtslint --expectOnly types",
"test:unit": "mocha lib/**/*.test.ts",
"test:run-all-specs": "mocha --timeout 0 test/run-all-specs.ts",
"test:integration": "cucumber-js",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"dependencies": {
"@klaveness/cypress-configuration": "^3.0.0",
"@cucumber/cucumber-expressions": "^15.0.1",
"@cucumber/gherkin": "^15.0.2",
"@cucumber/messages": "^13.2.1",
"@cucumber/tag-expressions": "^4.1.0",
"base64-js": "^1.5.1",
"chalk": "^4.1.2",
"cosmiconfig": "^7.0.1",
"debug": "^4.2.0",
"glob": "^7.2.0",
"is-path-inside": "^3.0.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@bahmutov/cypress-esbuild-preprocessor": "^2.1.2",
"@cucumber/cucumber": "^8.0.0",
"@cucumber/pretty-formatter": "^1.0.0-alpha.0",
"@cypress/browserify-preprocessor": "^3.0.2",
"@cypress/webpack-preprocessor": "^5.11.1",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/prettier": "^2.6.3",
"@types/stream-buffers": "^3.0.4",
"ast-types": "^0.15.2",
"cypress": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"dtslint": "^4.2.1",
"esbuild": "^0.14.23",
"fs-extra": "^10.1.0",
"mocha": "^9.2.1",
"pngjs": "^6.0.0",
"prettier": "^2.5.1",
"recast": "^0.21.1",
"stream-buffers": "^3.0.2",
"strip-indent": "^3.0.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"webpack": "^5.69.1"
},
"peerDependencies": {
"@cypress/browserify-preprocessor": "^3.0.1",
"cypress": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"esbuild": "^0.14.23"
},
"peerDependenciesMeta": {
"@cypress/browserify-preprocessor": {
"optional": true
},
"esbuild": {
"optional": true
}
},
"engines": {
"node": ">=14.14.0"
}
}