2017-05-11 07:06:41 +00:00
{
"name" : "puppeteer" ,
2019-07-23 05:34:10 +00:00
"version" : "1.19.0-post" ,
2017-08-16 05:30:56 +00:00
"description" : "A high-level API to control headless Chrome over the DevTools Protocol" ,
2017-05-11 07:06:41 +00:00
"main" : "index.js" ,
2017-07-28 08:09:26 +00:00
"repository" : "github:GoogleChrome/puppeteer" ,
2017-06-19 22:01:14 +00:00
"engines" : {
2017-08-24 19:20:05 +00:00
"node" : ">=6.4.0"
2017-06-19 22:01:14 +00:00
} ,
2018-06-02 16:56:47 +00:00
"puppeteer" : {
2019-08-15 04:43:18 +00:00
"chromium_revision" : "686378"
2018-06-02 16:56:47 +00:00
} ,
2017-05-11 07:06:41 +00:00
"scripts" : {
2017-12-08 00:37:22 +00:00
"unit" : "node test/test.js" ,
2019-02-02 01:04:19 +00:00
"funit" : "BROWSER=firefox node test/test.js" ,
2017-12-15 22:25:06 +00:00
"debug-unit" : "node --inspect-brk test/test.js" ,
2017-12-08 00:37:22 +00:00
"test-doclint" : "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js" ,
2019-07-30 20:19:12 +00:00
"test" : "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types && node utils/testrunner/test/test.js" ,
2017-06-19 21:43:05 +00:00
"install" : "node install.js" ,
2017-10-10 05:31:40 +00:00
"lint" : "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc" ,
2017-07-27 23:16:37 +00:00
"doc" : "node utils/doclint/cli.js" ,
2017-10-11 19:14:13 +00:00
"coverage" : "cross-env COVERAGE=true npm run unit" ,
2017-12-08 00:37:22 +00:00
"test-node6-transformer" : "node utils/node6-transform/test/test.js" ,
2019-01-28 23:12:45 +00:00
"build" : "node utils/node6-transform/index.js && node utils/doclint/generate_types" ,
2017-12-08 23:14:28 +00:00
"unit-node6" : "node node6/test/test.js" ,
2018-05-29 22:23:32 +00:00
"tsc" : "tsc -p ." ,
2017-12-29 01:19:13 +00:00
"prepublishOnly" : "npm run build" ,
2018-09-13 19:08:51 +00:00
"apply-next-version" : "node utils/apply_next_version.js" ,
"bundle" : "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js" ,
2019-01-28 23:12:45 +00:00
"test-types" : "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/" ,
2018-09-13 19:08:51 +00:00
"unit-bundle" : "node utils/browser/test.js"
2017-05-11 07:06:41 +00:00
} ,
"author" : "The Chromium Authors" ,
2017-08-31 18:16:28 +00:00
"license" : "Apache-2.0" ,
2017-05-11 07:06:41 +00:00
"dependencies" : {
2018-11-09 23:32:20 +00:00
"debug" : "^4.1.0" ,
2018-05-16 22:35:51 +00:00
"extract-zip" : "^1.6.6" ,
"https-proxy-agent" : "^2.2.1" ,
2018-04-17 21:51:03 +00:00
"mime" : "^2.0.3" ,
2018-11-09 23:32:20 +00:00
"progress" : "^2.0.1" ,
2017-08-23 15:33:29 +00:00
"proxy-from-env" : "^1.0.0" ,
2017-06-16 20:55:23 +00:00
"rimraf" : "^2.6.1" ,
2018-11-09 23:32:20 +00:00
"ws" : "^6.1.0"
2017-05-11 07:06:41 +00:00
} ,
2017-05-12 23:36:37 +00:00
"devDependencies" : {
2018-11-09 23:32:20 +00:00
"@types/debug" : "0.0.31" ,
2017-10-10 05:31:40 +00:00
"@types/extract-zip" : "^1.6.2" ,
2018-04-17 21:51:03 +00:00
"@types/mime" : "^2.0.0" ,
2018-10-03 23:59:49 +00:00
"@types/node" : "^8.10.34" ,
2017-10-10 05:31:40 +00:00
"@types/rimraf" : "^2.0.2" ,
2018-11-09 23:32:20 +00:00
"@types/ws" : "^6.0.1" ,
"commonmark" : "^0.28.1" ,
2017-10-11 19:14:13 +00:00
"cross-env" : "^5.0.5" ,
2019-03-13 23:26:28 +00:00
"eslint" : "^5.15.1" ,
2017-07-07 16:36:45 +00:00
"esprima" : "^4.0.0" ,
2018-09-14 10:03:33 +00:00
"jpeg-js" : "^0.3.4" ,
2017-06-16 21:33:34 +00:00
"minimist" : "^1.2.0" ,
"ncp" : "^2.0.0" ,
2017-06-16 22:02:14 +00:00
"pixelmatch" : "^4.0.2" ,
2018-04-19 21:16:02 +00:00
"pngjs" : "^3.3.3" ,
2017-10-10 05:31:40 +00:00
"text-diff" : "^1.0.1" ,
2019-01-11 06:56:39 +00:00
"typescript" : "3.2.2"
2018-09-13 19:08:51 +00:00
} ,
"browser" : {
"./lib/BrowserFetcher.js" : false ,
"./node6/lib/Puppeteer" : false ,
"ws" : "./utils/browser/WebSocket" ,
"fs" : false ,
"child_process" : false ,
"rimraf" : false ,
"readline" : false
2017-05-11 07:06:41 +00:00
}
}