UNPKG

phantom

Version:

PhantomJS integration module for NodeJS

85 lines (84 loc) 2.02 kB
{ "author": "Amir Raminfar <findamir@gmail.com>", "name": "phantom", "description": "PhantomJS integration module for NodeJS", "homepage": "https://github.com/amir20/phantomjs-node", "version": "6.3.0", "repository": { "type": "git", "url": "git://github.com/amir20/phantomjs-node.git" }, "contributors": [ { "name": "Amir Raminfar", "email": "findamir@gmail.com", "web": "http://amirraminfar.com/" } ], "keywords": [ "phantom", "phantomjs", "driver" ], "main": "dist/index.js", "engines": { "node": ">=8" }, "dependencies": { "phantomjs-prebuilt": "^2.1.16", "split": "^1.0.1", "winston": "^3.2.1" }, "bin": { "phantom": "./bin/phantom.js" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-core": "^6.26.3", "babel-eslint": "^10.0.1", "babel-polyfill": "^6.26.0", "babel-preset-env": "^1.7.0", "babel-preset-es2015": "^6.18.0", "babel-preset-flow": "^6.23.0", "eslint": "^5.15.3", "eslint-config-airbnb-base": "^13.1.0", "eslint-plugin-flowtype": "^3.4.2", "eslint-plugin-import": "^2.16.0", "flow-bin": "^0.102.0", "flow-copy-source": "^2.0.7", "jest": "^24.8.0", "jest-cli": "^23.6.0", "npm-watch": "^0.6.0", "prettier-eslint": "^9.0.0", "rimraf": "^2.6.3" }, "license": "ISC", "jest": { "roots": [ "<rootDir>/dist" ], "testMatch": [ "**/?(*.)+(spec|test).js" ], "collectCoverage": true, "coveragePathIgnorePatterns": [ "node_modules/", "jest-modules/" ], "testEnvironment": "node" }, "watch": { "build": "src" }, "scripts": { "lint": "eslint . && flow check", "pretest": "npm run lint && npm run build", "test": "jest", "clean": "rimraf dist", "flowbuild": "flow-copy-source src dist", "prebuild": "npm run clean && npm run flowbuild", "build": "babel src -d dist", "prepublishOnly": "npm run build", "watch": "npm-watch" } }