mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
0960dc38d1
This patch teaches doclint to regenerate table of contents automatically whenever it's needed. This patch: - splits lint.js into lint.js and cli.js - teaches cli.js to generate table-of-contents - removes the test for table-of-contents errors from doclint - adds a test for doclint failing to parse object destructuring in method parameters.
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "puppeteer",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"engines": {
|
|
"node": ">=7.10.0"
|
|
},
|
|
"scripts": {
|
|
"unit": "jasmine test/test.js",
|
|
"debug-unit": "DEBUG_TEST=true node --inspect-brk ./node_modules/.bin/jasmine test/test.js",
|
|
"test-phantom": "python third_party/phantomjs/test/run-tests.py",
|
|
"test-doclint": "jasmine utils/doclint/test/test.js",
|
|
"test": "npm run lint --silent && npm run unit && npm run test-phantom && npm run test-doclint",
|
|
"install": "node install.js",
|
|
"lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run doc",
|
|
"doc": "node utils/doclint/cli.js"
|
|
},
|
|
"author": "The Chromium Authors",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"dependencies": {
|
|
"debug": "^2.6.8",
|
|
"extract-zip": "^1.6.5",
|
|
"mime": "^1.3.4",
|
|
"progress": "^2.0.0",
|
|
"rimraf": "^2.6.1",
|
|
"ws": "^3.0.0"
|
|
},
|
|
"puppeteer": {
|
|
"chromium_revision": "487285"
|
|
},
|
|
"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",
|
|
"pixelmatch": "^4.0.2",
|
|
"pngjs": "^3.2.0",
|
|
"text-diff": "^1.0.1"
|
|
}
|
|
}
|