Files
cypress/packages/https-proxy/package.json
Gleb Bahmutov 1439976ac9 Proxy packages instead of symlinks (#245)
* all: replace symlinks with proxy modules

* replacing symlinking with copying proxy packages

* https-proxy: add missing prod dependency lodash

* put actual path to main for each package proxy

* better console log

* driver: include index.js in published files

* https-proxy was missing debug production dependency

* app built with proxied packages works

* delete existing node_modules/@packages before making proxies

* explicit async fs call

* server: remove deep paths in tests

* driver: remove nested path to @packages

* link: ensure each package has main set
2017-06-30 11:33:09 -04:00

41 lines
959 B
JSON

{
"name": "@packages/https-proxy",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"start": "node index.js",
"clean-deps": "rm -rf node_modules",
"test": "NODE_ENV=test mocha",
"test-watch": "NODE_ENV=test mocha --watch",
"https": "node https.js",
"release": "releaser"
},
"files": [
"lib"
],
"devDependencies": {
"@cypress/releaser": "0.1.12",
"chai": "^3.5.0",
"http-mitm-proxy": "^0.5.1",
"mocha": "^2.5.3",
"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.4",
"node-forge": "^0.6.39",
"semaphore": "^1.0.5",
"server-destroy-vvo": "1.0.1",
"ssl-root-cas": "^1.1.10"
}
}