UNPKG

qa-tools

Version:

QA tools is a package to provide developers with tools to assure the quality of their layouts. Simple install with yarn or NPM.

66 lines (65 loc) 1.29 kB
{ "repository": { "type": "git", "url": "https://github.com/pigeonfresh/qa-tools.git" }, "homepage": "https://github.com/pigeonfresh/qa-tools", "keywords": [ "qa", "qa-tools", "grid-overlay", "check", "helpers" ], "version": "0.1.4", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=10" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "name": "qa-tools", "author": "pigeonfresh", "module": "dist/qa-tools.esm.js", "size-limit": [ { "path": "dist/qa-tools.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/qa-tools.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^4.9.1", "husky": "^4.3.7", "prettier": "^2.2.1", "size-limit": "^4.9.1", "tsdx": "^0.14.1", "tslib": "^2.1.0", "typescript": "^4.1.3" }, "dependencies": { "node-notifier": "^9.0.0" } }