-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathpackage.json
82 lines (82 loc) · 2.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
{
"name": "@cypress/webpack-preprocessor",
"version": "0.0.0-development",
"description": "Cypress preprocessor for bundling JavaScript via webpack",
"private": false,
"main": "dist",
"scripts": {
"build": "rimraf dist && tsc || echo 'built, with errors'",
"check-ts": "tsc --noEmit",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
"secure": "nsp check",
"semantic-release": "semantic-release",
"size": "npm pack --dry",
"test": "node ./scripts/test-webpack-5.js",
"test-debug": "node --inspect --debug-brk ./node_modules/.bin/_mocha",
"test-e2e": "mocha test/e2e/*.spec.*",
"test-unit": "mocha test/unit/*.spec.*",
"test-watch": "yarn test-unit & chokidar '**/*.(js|ts)' 'test/unit/*.(js|ts)' -c 'yarn test-unit'",
"watch": "rimraf dist && tsc --watch"
},
"dependencies": {
"bluebird": "3.7.1",
"debug": "^4.3.4",
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@types/mocha": "9.0.0",
"@types/webpack": "^4.41.12",
"babel-loader": "^9.1.3",
"chai": "4.1.2",
"chalk": "3.0.0",
"chokidar-cli": "2.1.0",
"cypress": "0.0.0-development",
"fs-extra": "^10.1.0",
"mocha": "^7.1.0",
"mockery": "2.1.0",
"proxyquire": "2.1.3",
"semantic-release": "22.0.12",
"sinon": "^9.0.0",
"sinon-chai": "^3.5.0",
"snap-shot-it": "7.9.2",
"ts-node": "^10.9.2",
"webpack": "^5.88.2"
},
"peerDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"babel-loader": "^8.3 || ^9",
"webpack": "^4 || ^5"
},
"files": [
"dist"
],
"types": "dist",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/cypress.git"
},
"homepage": "https://github.com/cypress-io/cypress/tree/develop/npm/webpack-preprocessor#readme",
"bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Fwebpack-preprocessor&template=1-bug-report.md&title=",
"keywords": [
"cypress",
"cypress-plugin",
"cypress-preprocessor",
"webpack"
],
"nx": {
"targets": {
"build": {
"dependsOn": [
"!@cypress/react18:build"
],
"outputs": [
"{projectRoot}/dist"
]
}
}
}
}