puppeteer/package.json

53 lines
1.7 KiB
JSON
Raw Normal View History

2017-05-11 07:06:41 +00:00
{
"name": "puppeteer",
2017-08-28 18:15:11 +00:00
"version": "0.10.2-alpha",
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",
"repository": "github:GoogleChrome/puppeteer",
2017-06-19 22:01:14 +00:00
"engines": {
"node": ">=6.4.0"
2017-06-19 22:01:14 +00:00
},
2017-05-11 07:06:41 +00:00
"scripts": {
"unit": "jasmine test/test.js",
"debug-unit": "DEBUG_TEST=true node --inspect-brk ./node_modules/.bin/jasmine test/test.js",
"test-doclint": "jasmine utils/doclint/check_public_api/test/test.js && jasmine utils/doclint/preprocessor/test.js",
"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",
"lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run doc",
"doc": "node utils/doclint/cli.js",
"coverage": "COVERAGE=true npm run unit",
"test-node6-transformer": "jasmine utils/node6-transform/test/test.js",
"build": "node utils/node6-transform/index.js",
"unit-node6": "jasmine node6-test/test.js"
2017-05-11 07:06:41 +00:00
},
"author": "The Chromium Authors",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"debug": "^2.6.8",
2017-05-11 07:06:41 +00:00
"extract-zip": "^1.6.5",
"https-proxy-agent": "^2.1.0",
2017-05-11 07:06:41 +00:00
"mime": "^1.3.4",
"progress": "^2.0.0",
"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": {
"chromium_revision": "496140"
},
"devDependencies": {
"commonmark": "^0.27.0",
"deasync": "^0.1.9",
"eslint": "^4.0.0",
"esprima": "^4.0.0",
"jasmine": "^2.6.0",
"markdown-toc": "^1.1.0",
"minimist": "^1.2.0",
"ncp": "^2.0.0",
"pdfjs-dist": "^1.8.595",
2017-06-16 22:02:14 +00:00
"pixelmatch": "^4.0.2",
"pngjs": "^3.2.0",
"text-diff": "^1.0.1"
2017-05-11 07:06:41 +00:00
}
}