Cleanup package dependencies

Phantom shim requires a bunch of dependencies which are not needed by
the puppeteer itself.

This patch moves these dependencies to the devDependencies.
This commit is contained in:
Andrey Lushnikov 2017-06-13 20:14:45 -07:00
parent 7136b3aaff
commit 143f633d3c

View File

@ -13,11 +13,8 @@
"license": "SEE LICENSE IN LICENSE", "license": "SEE LICENSE IN LICENSE",
"dependencies": { "dependencies": {
"chrome-remote-interface": "^0.18.0", "chrome-remote-interface": "^0.18.0",
"deasync": "^0.1.9",
"extract-zip": "^1.6.5", "extract-zip": "^1.6.5",
"mime": "^1.3.4", "mime": "^1.3.4",
"minimist": "^1.2.0",
"ncp": "^2.0.0",
"progress": "^2.0.0", "progress": "^2.0.0",
"rimraf": "^2.6.1" "rimraf": "^2.6.1"
}, },
@ -28,6 +25,9 @@
"chromium_revision": "478524" "chromium_revision": "478524"
}, },
"devDependencies": { "devDependencies": {
"ncp": "^2.0.0",
"minimist": "^1.2.0",
"deasync": "^0.1.9",
"jasmine": "^2.6.0" "jasmine": "^2.6.0"
} }
} }