Files
cypress/packages/https-proxy/package.json
Brian Mann ad26755298 prevent cross origin errors (#2787)
* synchronize lodash versions

* start driver test server on 3500 + 3501 the same way

* fixes #2784, short circuit checks to discover the DOM type when comparing value and subject

-this prevents a situation where we accidentally iterate through a
cross origin <window> object and cause cross origin issues

* fix functions not being invoked with value

* skip bad jira test derp
2018-11-15 23:46:39 -05:00

46 lines
1.3 KiB
JSON

{
"name": "@packages/https-proxy",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"prestart": "npm run check-deps-pre",
"start": "node index.js",
"check-deps": "node ../../scripts/check-deps.js --verbose",
"check-deps-pre": "npm run check-deps -- --prescript",
"clean-deps": "rm -rf node_modules",
"pretest": "npm run check-deps-pre",
"test": "cross-env NODE_ENV=test bin-up mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"pretest-watch": "npm run check-deps-pre",
"test-watch": "cross-env NODE_ENV=test bin-up mocha --watch",
"https": "node https.js"
},
"files": [
"lib"
],
"devDependencies": {
"@cypress/releaser": "0.1.12",
"bin-up": "^1.1.0",
"chai": "^3.5.0",
"cross-env": "^5.0.5",
"http-mitm-proxy": "^0.5.1",
"request": "^2.72.0",
"request-promise": "^3.0.0",
"sinon": "^1.17.4",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.8.0",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.1.0"
},
"dependencies": {
"bluebird": "^3.4.0",
"debug": "^2.6.8",
"fs-extra": "^0.30.0",
"lodash": "4.17.11",
"node-forge": "^0.6.39",
"semaphore": "^1.0.5",
"server-destroy-vvo": "1.0.1",
"ssl-root-cas": "^1.1.10"
}
}