UNPKG

1.56 kBJSONView Raw
1{
2 "name": "puppeteer",
3 "version": "0.9.0",
4 "description": "A high-level API to control headless Chrome over the DevTools Protocol",
5 "main": "index.js",
6 "repository": "github:GoogleChrome/puppeteer",
7 "engines": {
8 "node": ">=7.10.0"
9 },
10 "scripts": {
11 "unit": "jasmine test/test.js",
12 "debug-unit": "DEBUG_TEST=true node --inspect-brk ./node_modules/.bin/jasmine test/test.js",
13 "test-phantom": "python third_party/phantomjs/test/run-tests.py",
14 "test-doclint": "jasmine utils/doclint/check_public_api/test/test.js && jasmine utils/doclint/preprocessor/test.js",
15 "test": "npm run lint --silent && npm run coverage && npm run test-phantom && npm run test-doclint",
16 "install": "node install.js",
17 "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run doc",
18 "doc": "node utils/doclint/cli.js",
19 "coverage": "COVERAGE=true npm run unit"
20 },
21 "author": "The Chromium Authors",
22 "license": "SEE LICENSE IN LICENSE",
23 "dependencies": {
24 "debug": "^2.6.8",
25 "extract-zip": "^1.6.5",
26 "mime": "^1.3.4",
27 "progress": "^2.0.0",
28 "rimraf": "^2.6.1",
29 "ws": "^3.0.0"
30 },
31 "puppeteer": {
32 "chromium_revision": "494755"
33 },
34 "devDependencies": {
35 "commonmark": "^0.27.0",
36 "deasync": "^0.1.9",
37 "eslint": "^4.0.0",
38 "esprima": "^4.0.0",
39 "jasmine": "^2.6.0",
40 "markdown-toc": "^1.1.0",
41 "minimist": "^1.2.0",
42 "ncp": "^2.0.0",
43 "pdfjs-dist": "^1.8.595",
44 "pixelmatch": "^4.0.2",
45 "pngjs": "^3.2.0",
46 "text-diff": "^1.0.1"
47 }
48}