mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-15 11:40:07 -06:00
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "@cypress/webpack-dev-server",
|
|
"version": "0.0.0-development",
|
|
"description": "Launches Webpack Dev Server for Component Testing",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build-prod": "tsc",
|
|
"test": "tsc && mocha -r @packages/ts/register test/**/*.spec.ts --exit",
|
|
"watch": "tsc -w"
|
|
},
|
|
"dependencies": {
|
|
"debug": "4.3.2",
|
|
"semver": "^7.3.4",
|
|
"webpack-merge": "^5.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/webpack-dev-server": "^3.11.1",
|
|
"chai": "^4.2.0",
|
|
"mocha": "^8.1.3",
|
|
"speed-measure-webpack-plugin": "1.4.2",
|
|
"typescript": "^3.9.7",
|
|
"webpack": "^4.44.2",
|
|
"webpack-dev-server": "^3.11.0"
|
|
},
|
|
"peerDependencies": {
|
|
"html-webpack-plugin": "> 3",
|
|
"webpack": "> 4",
|
|
"webpack-dev-server": "> 3"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"index-template.html"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cypress-io/cypress.git"
|
|
},
|
|
"homepage": "https://github.com/cypress-io/cypress/tree/master/npm/webpack-dev-server#readme",
|
|
"bugs": "https://github.com/cypress-io/cypress/issues/new?template=1-bug-report.md",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|