UNPKG

2.85 kBJSONView Raw
1{
2 "name": "@cypress/webpack-preprocessor",
3 "version": "5.13.0",
4 "description": "Cypress preprocessor for bundling JavaScript via webpack",
5 "private": false,
6 "main": "dist",
7 "scripts": {
8 "build": "rimraf dist && tsc || echo 'built, with errors'",
9 "build-prod": "yarn build",
10 "deps": "deps-ok && dependency-check --no-dev .",
11 "secure": "nsp check",
12 "semantic-release": "semantic-release",
13 "size": "npm pack --dry",
14 "test": "node ./scripts/test-webpack-5.js",
15 "test-debug": "node --inspect --debug-brk ./node_modules/.bin/_mocha",
16 "test-e2e": "mocha test/e2e/*.spec.*",
17 "test-unit": "mocha test/unit/*.spec.*",
18 "test-watch": "yarn test-unit & chokidar '**/*.(js|ts)' 'test/unit/*.(js|ts)' -c 'yarn test-unit'",
19 "check-ts": "tsc --noEmit",
20 "watch": "rimraf dist && tsc --watch"
21 },
22 "dependencies": {
23 "bluebird": "3.7.1",
24 "debug": "^4.3.2",
25 "fs-extra": "^10.1.0",
26 "loader-utils": "^2.0.0",
27 "lodash": "^4.17.20",
28 "webpack-virtual-modules": "^0.4.4"
29 },
30 "devDependencies": {
31 "@babel/core": "^7.0.1",
32 "@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3",
33 "@babel/preset-env": "^7.0.0",
34 "@fellow/eslint-plugin-coffee": "0.4.13",
35 "@types/mocha": "9.0.0",
36 "@types/webpack": "^4.41.12",
37 "@typescript-eslint/eslint-plugin": "^4.18.0",
38 "@typescript-eslint/parser": "^4.18.0",
39 "babel-loader": "^8.0.2",
40 "chai": "4.1.2",
41 "chalk": "3.0.0",
42 "chokidar-cli": "2.1.0",
43 "common-tags": "^1.8.2",
44 "cypress": "0.0.0-development",
45 "dependency-check": "2.9.1",
46 "deps-ok": "1.2.1",
47 "eslint": "7.22.0",
48 "eslint-plugin-cypress": "2.11.2",
49 "eslint-plugin-json-format": "2.0.1",
50 "eslint-plugin-mocha": "8.1.0",
51 "fast-glob": "3.1.1",
52 "find-webpack": "1.5.0",
53 "md5": "2.3.0",
54 "mocha": "^7.1.0",
55 "mockery": "2.1.0",
56 "proxyquire": "2.1.3",
57 "react": "16.13.1",
58 "react-dom": "16.13.1",
59 "react-scripts": "3.2",
60 "rimraf": "3.0.2",
61 "semantic-release": "19.0.3",
62 "sinon": "^9.0.0",
63 "sinon-chai": "^3.5.0",
64 "snap-shot-it": "7.9.2",
65 "ts-node": "^10.9.1",
66 "webpack": "^4.44.2"
67 },
68 "peerDependencies": {
69 "@babel/core": "^7.0.1",
70 "@babel/preset-env": "^7.0.0",
71 "babel-loader": "^8.0.2",
72 "webpack": "^4 || ^5"
73 },
74 "files": [
75 "dist"
76 ],
77 "types": "dist",
78 "license": "MIT",
79 "repository": {
80 "type": "git",
81 "url": "https://github.com/cypress-io/cypress.git"
82 },
83 "homepage": "https://github.com/cypress-io/cypress/tree/develop/npm/webpack-preprocessor#readme",
84 "bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Fwebpack-preprocessor&template=1-bug-report.md&title=",
85 "keywords": [
86 "cypress",
87 "cypress-plugin",
88 "cypress-preprocessor",
89 "webpack"
90 ]
91}