New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

axe-puppeteer

Package Overview
Dependencies
Maintainers
5
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

axe-puppeteer - npm Package Compare versions

Comparing version 0.0.1 to 0.1.0-canary.57b2504f

.circleci/config.yml

129

package.json
{
"name": "axe-puppeteer",
"description": "An aXe-core integration for Puppeteer",
"version": "0.0.1",
"license": "MPL-2.0",
"contributors": [
{
"name": "Dylan Barrell",
"email": "dylan@barrell.com",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Wilco Fiers",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Marcy Sutton",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
}
],
"version": "0.1.0-canary.57b2504f",
"description": "Provides a chainable axe API for Puppeteer and automatically injects into all frames",
"repository": {
"type": "git",
"url": "https://github.com/dequelabs/axe-core.git"
"url": "https://github.com/dequelabs/axe-puppeteer.git"
},
"keywords": [
"Accessibility",
"a11y",
"testing",
"unit",
"tdd",
"bdd",
"aXe"
],
"scripts": {},
"devDependencies": {},
"dependencies": {}
}
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha",
"coverage": "nyc mocha",
"lint": "tslint --project tsconfig.json --format codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"fmt": "prettier --write '*'.{md,js,json} 'src/**/*.ts'",
"prepublishOnly": "npm run build"
},
"author": "Adam Cutler",
"license": "MPL-2.0",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.10",
"@types/puppeteer": "^1.10.0",
"@types/sinon": "^5.0.7",
"@types/test-listen": "^1.1.0",
"chai": "^4.2.0",
"express": "^4.16.4",
"husky": "^1.2.0",
"lint-staged": "^8.0.5",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.15.2",
"puppeteer": "^1.10.0",
"sinon": "^7.3.2",
"source-map-support": "^0.5.9",
"test-listen": "^1.1.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"tslint-config-standard": "^8.0.1",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.1.6"
},
"dependencies": {
"axe-core": "^3.1.2"
},
"peerDependencies": {
"puppeteer": "^1.10.0"
},
"engines": {
"node": ">=6.4.0"
},
"lint-staged": {
"*.{md,js,json,css}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"nyc": {
"require": [
"ts-node/register"
],
"extension": [
".ts",
".tsx"
],
"include": [
"src"
],
"exclude": [
"**/*.d.ts",
"src/browser.ts"
],
"all": true,
"instrument": true,
"sourceMap": true,
"reporter": [
"text-summary",
"html"
],
"statements": 85,
"branches": 85,
"functions": 85,
"lines": 85
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc