mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
79ceb0c439
This patch: - renames phantomjs folder into phantom_shim - moves bin/puppeteer into a phantom_shim/runner.js and merges the file with phantomjs/index.js - removes "bin" field from the package.json - it is confusing to have phantom shim installable
31 lines
744 B
JSON
31 lines
744 B
JSON
{
|
|
"name": "puppeteer",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test-puppeteer": "jasmine test/test.js",
|
|
"test-phantom": "python third_party/phantomjs/test/run-tests.py",
|
|
"test": "npm run test-puppeteer && npm run test-phantom",
|
|
"install": "node install.js"
|
|
},
|
|
"author": "The Chromium Authors",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"dependencies": {
|
|
"chrome-remote-interface": "^0.18.0",
|
|
"extract-zip": "^1.6.5",
|
|
"mime": "^1.3.4",
|
|
"progress": "^2.0.0",
|
|
"rimraf": "^2.6.1"
|
|
},
|
|
"puppeteer": {
|
|
"chromium_revision": "478524"
|
|
},
|
|
"devDependencies": {
|
|
"ncp": "^2.0.0",
|
|
"minimist": "^1.2.0",
|
|
"deasync": "^0.1.9",
|
|
"jasmine": "^2.6.0"
|
|
}
|
|
}
|