-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathpackage.json
87 lines (87 loc) · 2.67 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
{
"name": "@cypress/webpack-batteries-included-preprocessor",
"version": "0.0.0-development",
"description": "Cypress preprocessor for bundling JavaScript via webpack with dependencies included and support for various ES features, TypeScript, and CoffeeScript",
"private": false,
"scripts": {
"lint": "eslint --ext .js,.json, .",
"test": "mocha test/**/*.spec.* --timeout 4000"
},
"dependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-class-properties": "^7.24.7",
"@babel/plugin-transform-object-rest-spread": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/runtime": "^7.25.0",
"assert": "^2.0.0",
"babel-loader": "^9.1.3",
"babel-plugin-add-module-exports": "^1.0.2",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"coffee-loader": "^4.0.0",
"coffeescript": "2.6.0",
"constants-browserify": "^1.0.0",
"crypto-browserify": "^3.12.0",
"debug": "^4.3.4",
"domain-browser": "^4.22.0",
"events": "^3.3.0",
"fs-extra": "^9.1.0",
"https-browserify": "^1.0.0",
"json5": "2.2.3",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"punycode": "^2.3.0",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "1.3.0",
"timers-browserify": "^2.0.12",
"ts-loader": "9.4.4",
"tsconfig-aliased-for-wbip": "npm:tsconfig@^7.0.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"tty-browserify": "^0.0.1",
"url": "^0.11.1",
"util": "^0.12.5",
"vm-browserify": "^1.1.2",
"webpack": "^5.88.2"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "0.0.0-development",
"@types/mocha": "^8.0.2",
"@types/webpack": "^5.28.1",
"chai": "^4.2.0",
"decache": "^4.6.2",
"mocha": "^8.1.1",
"mock-require": "3.0.3",
"react": "^16.13.1",
"sinon": "18.0.0",
"typescript": "~5.4.5"
},
"peerDependencies": {
"@cypress/webpack-preprocessor": "^5.4.4"
},
"files": [
"index.js",
"empty.js"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "/~https://github.com/cypress-io/cypress.git"
},
"homepage": "/~https://github.com/cypress-io/cypress/tree/develop/npm/webpack-batteries-included-preprocessor#readme",
"bugs": "/~https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20webpack-batteries-included-preprocessor&template=1-bug-report.md&title=",
"keywords": [
"cypress",
"cypress-plugin",
"cypress-preprocessor",
"webpack"
],
"publishConfig": {
"access": "public"
},
"nx": {}
}