headless-chromium
Version:
Install precompiled versions of the Chromium/Chrome headless shell using npm|yarn
132 lines (131 loc) • 3 kB
JSON
{
"name": "headless-chromium",
"version": "0.0.1-prerelease.1",
"description": "Install precompiled versions of the Chromium/Chrome headless shell using npm|yarn",
"author": "Marco Lüthy <marco@luethy.net>",
"keywords": [
"headless",
"chrome",
"chromium",
"prebuilt",
"precompiled",
"devtools",
"chrome-debugging-protocol"
],
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.es.js",
"files": [
"dist/bundle.cjs.js",
"dist/bundle.es.js"
],
"repository": "git@github.com:adieuadieu/node-headless-chrome.git",
"bugs": {
"url": "https://github.com/adieuadieu/node-headless-chrome/issues"
},
"homepage": "https://github.com/adieuadieu/node-headless-chrome",
"license": "MIT",
"engines": {
"node": ">= 6.1"
},
"config": {
"jsSrc": "src/"
},
"scripts": {
"test": "npm run lint && nyc ava",
"watch:test": "ava --watch",
"ava": "ava",
"lint": "npm run lint:eslint -s",
"lint:eslint": "eslint $npm_package_config_jsSrc",
"coverage": "nyc report",
"generate": "babel-node src/make.js",
"prepack": "prepack src/index.js --out lib/index.js",
"build": "rollup -c",
"dev": "rollup -c -w",
"_prepublish": "rm -Rf dist/ && yarn build"
},
"dependencies": {},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.23.0",
"codacy-coverage": "^2.0.2",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-ava": "^4.2.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-tap": "^2.0.0",
"nyc": "^10.3.0",
"rollup": "^0.41.6",
"rollup-plugin-json": "^2.1.1"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"babel": {
"sourceMaps": "inline",
"plugins": [
"transform-runtime"
],
"presets": [
[
"env",
{
"targets": {
"node": 6.1
}
}
],
"stage-3"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"ava",
"import"
],
"extends": [
"airbnb-base",
"plugin:ava/recommended"
],
"settings": {
"import/parser": "babel-eslint",
"import/resolve": {
"moduleDirectory": [
"node_modules",
"src",
"./"
]
}
},
"rules": {
"no-console": 0,
"max-len": [
"error",
80
],
"semi": [
"error",
"never"
],
"comma-dangle": [
"error",
"always-multiline"
],
"space-before-function-paren": [
"error",
"always"
]
}
}
}