UNPKG

2.06 kBJSONView Raw
1{
2 "name": "puppeteer",
3 "version": "1.2.0-next.1523416053090",
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": ">=6.4.0"
9 },
10 "scripts": {
11 "unit": "node test/test.js",
12 "debug-unit": "node --inspect-brk test/test.js",
13 "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js",
14 "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer",
15 "install": "node install.js",
16 "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc",
17 "doc": "node utils/doclint/cli.js",
18 "coverage": "cross-env COVERAGE=true npm run unit",
19 "test-node6-transformer": "node utils/node6-transform/test/test.js",
20 "build": "node utils/node6-transform/index.js",
21 "unit-node6": "node node6/test/test.js",
22 "tsc": "node utils/protocol-types-generator && tsc -p .",
23 "prepublishOnly": "npm run build",
24 "apply-next-version": "node utils/apply_next_version.js"
25 },
26 "author": "The Chromium Authors",
27 "license": "Apache-2.0",
28 "dependencies": {
29 "debug": "^2.6.8",
30 "extract-zip": "^1.6.5",
31 "https-proxy-agent": "^2.1.0",
32 "mime": "^1.3.4",
33 "progress": "^2.0.0",
34 "proxy-from-env": "^1.0.0",
35 "rimraf": "^2.6.1",
36 "ws": "^3.0.0"
37 },
38 "puppeteer": {
39 "chromium_revision": "549031"
40 },
41 "devDependencies": {
42 "@types/debug": "0.0.30",
43 "@types/extract-zip": "^1.6.2",
44 "@types/mime": "^1.3.1",
45 "@types/node": "^8.0.26",
46 "@types/rimraf": "^2.0.2",
47 "@types/ws": "^3.0.2",
48 "commonmark": "^0.27.0",
49 "cross-env": "^5.0.5",
50 "eslint": "^4.0.0",
51 "esprima": "^4.0.0",
52 "markdown-toc": "^1.1.0",
53 "minimist": "^1.2.0",
54 "ncp": "^2.0.0",
55 "pdfjs-dist": "^1.8.595",
56 "pixelmatch": "^4.0.2",
57 "pngjs": "^3.2.0",
58 "text-diff": "^1.0.1",
59 "typescript": "~2.8.1"
60 }
61}