2017-05-11 07:06:41 +00:00
|
|
|
{
|
|
|
|
"name": "puppeteer",
|
2018-03-16 18:01:49 +00:00
|
|
|
"version": "1.2.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
|
|
|
},
|
2017-05-11 07:06:41 +00:00
|
|
|
"scripts": {
|
2017-12-08 00:37:22 +00:00
|
|
|
"unit": "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",
|
2017-08-26 02:28:49 +00:00
|
|
|
"test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer",
|
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",
|
2017-08-26 02:28:49 +00:00
|
|
|
"build": "node utils/node6-transform/index.js",
|
2017-12-08 23:14:28 +00:00
|
|
|
"unit-node6": "node node6/test/test.js",
|
2017-12-28 18:40:38 +00:00
|
|
|
"tsc": "tsc -p .",
|
2017-12-29 01:19:13 +00:00
|
|
|
"prepublishOnly": "npm run build",
|
|
|
|
"apply-next-version": "node utils/apply_next_version.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": {
|
2017-07-17 22:15:07 +00:00
|
|
|
"debug": "^2.6.8",
|
2017-05-11 07:06:41 +00:00
|
|
|
"extract-zip": "^1.6.5",
|
2017-08-23 15:33:29 +00:00
|
|
|
"https-proxy-agent": "^2.1.0",
|
2017-05-11 07:06:41 +00:00
|
|
|
"mime": "^1.3.4",
|
|
|
|
"progress": "^2.0.0",
|
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",
|
|
|
|
"ws": "^3.0.0"
|
2017-05-11 07:06:41 +00:00
|
|
|
},
|
|
|
|
"puppeteer": {
|
2018-04-04 20:56:24 +00:00
|
|
|
"chromium_revision": "548153"
|
2017-05-12 23:36:37 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-10-10 05:31:40 +00:00
|
|
|
"@types/debug": "0.0.30",
|
|
|
|
"@types/extract-zip": "^1.6.2",
|
|
|
|
"@types/mime": "^1.3.1",
|
|
|
|
"@types/node": "^8.0.26",
|
|
|
|
"@types/rimraf": "^2.0.2",
|
|
|
|
"@types/ws": "^3.0.2",
|
2017-07-07 16:36:45 +00:00
|
|
|
"commonmark": "^0.27.0",
|
2017-10-11 19:14:13 +00:00
|
|
|
"cross-env": "^5.0.5",
|
2017-06-21 00:04:24 +00:00
|
|
|
"eslint": "^4.0.0",
|
2017-07-07 16:36:45 +00:00
|
|
|
"esprima": "^4.0.0",
|
|
|
|
"markdown-toc": "^1.1.0",
|
2017-06-16 21:33:34 +00:00
|
|
|
"minimist": "^1.2.0",
|
|
|
|
"ncp": "^2.0.0",
|
2017-08-03 21:10:52 +00:00
|
|
|
"pdfjs-dist": "^1.8.595",
|
2017-06-16 22:02:14 +00:00
|
|
|
"pixelmatch": "^4.0.2",
|
2017-06-17 21:27:51 +00:00
|
|
|
"pngjs": "^3.2.0",
|
2017-10-10 05:31:40 +00:00
|
|
|
"text-diff": "^1.0.1",
|
2018-03-28 22:16:31 +00:00
|
|
|
"typescript": "~2.7.0"
|
2017-05-11 07:06:41 +00:00
|
|
|
}
|
|
|
|
}
|