46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "node-qunit-puppeteer",
|
|
"version": "2.1.0",
|
|
"description": "A simple node module for running qunit tests with headless Chromium",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ameshkov/node-qunit-puppeteer.git"
|
|
},
|
|
"bin": {
|
|
"node-qunit-puppeteer": "cli.js"
|
|
},
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "node test/test-runner.js",
|
|
"lint": "eslint index.js cli.js test/**/*.js",
|
|
"lint:fix": "eslint index.js cli.js test/**/*.js --fix"
|
|
},
|
|
"dependencies": {
|
|
"colors": "^1.4.0",
|
|
"puppeteer": "^2.1.0"
|
|
},
|
|
"keywords": [
|
|
"qunit",
|
|
"qunit-plugin",
|
|
"chrome",
|
|
"puppeteer",
|
|
"headless",
|
|
"testing"
|
|
],
|
|
"author": "Andrey Meshkov",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ameshkov/node-qunit-puppeteer/issues"
|
|
},
|
|
"homepage": "https://github.com/ameshkov/node-qunit-puppeteer",
|
|
"devDependencies": {
|
|
"eslint": "^6.6.0",
|
|
"eslint-config-airbnb": "^18.0.1",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
"eslint-plugin-react": "^7.16.0",
|
|
"eslint-plugin-react-hooks": "^1.7.0",
|
|
"merge": ">=1.2.1",
|
|
"qunit": "^2.9.3"
|
|
}
|
|
}
|