UNPKG

chromeless

Version:

🖥 Chrome automation made simple. Runs locally or headless on AWS Lambda.

81 lines (80 loc) • 2.18 kB
{ "name": "chromeless", "version": "1.5.2", "description": "🖥 Chrome automation made simple. Runs locally or headless on AWS Lambda.", "homepage": "https://github.com/graphcool/chromeless", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/graphcool/chromeless.git" }, "bug": { "url": "https://github.com/graphcool/chromeless/issues" }, "main": "dist/src/index.js", "typings": "dist/src/index.d.ts", "files": [ "dist" ], "engines": { "node": ">= 6.10.0" }, "scripts": { "ava": "tsc -d && nyc ava", "build": "npm run clean && tsc -d", "clean": "rimraf dist", "coverage": "npm run ava", "precommit": "lint-staged", "commitmsg": "commitlint -e $GIT_PARAMS", "prettier": "prettier --list-different --write \"**/*.{ts,json}\"", "test": "npm run lint && npm run ava", "lint": "npm run prettier && npm run tslint", "tslint": "tslint -c tslint.json -p tsconfig.json --exclude 'node_modules/**'", "watch": "tsc -w", "watch:test": "tsc -d -w & ava --watch", "semantic-release": "semantic-release" }, "dependencies": { "aws-sdk": "^2.177.0", "bluebird": "^3.5.1", "chrome-launcher": "^0.10.0", "chrome-remote-interface": "^0.25.5", "cuid": "^2.1.0", "form-data": "^2.3.1", "got": "^8.0.0", "mqtt": "^2.15.0" }, "devDependencies": { "@commitlint/config-conventional": "^6.0.2", "@types/bluebird": "^3.5.19", "@types/cuid": "^1.3.0", "@types/node": "^10.0.3", "ava": "^0.25.0", "commitlint": "^6.0.2", "husky": "^0.14.3", "lint-staged": "^7.0.0", "nyc": "^11.4.1", "prettier": "1.11.1", "rimraf": "^2.6.2", "semantic-release": "^15.0.2", "tslint": "^5.8.0", "typescript": "^2.6.2" }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "lint-staged": { "*.{ts}": [ "prettier --parser typescript --no-semi --single-quote --trailing-comma all --write", "tslint", "git add" ], "*.{js}": [ "prettier --no-semi --single-quote --trailing-comma all --write", "lint", "git add" ] } }