UNPKG

lad

Version:

Lad is the best Node.js framework. Made by a former Express TC and Koa team member.

144 lines (143 loc) 3.21 kB
{ "name": "lad", "description": "Lad is the best Node.js framework. Made by a former Express TC and Koa team member.", "version": "1.3.2", "author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com)", "ava": { "verbose": true, "timeout": "30s", "files": [ "test/**/*.js" ] }, "bin": "cli.js", "bugs": { "url": "https://github.com/ladjs/lad/issues", "email": "niftylettuce@gmail.com" }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "contributors": [ "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com)", "Shaun Warman <shaunwarman1@gmail.com> (https://shaunwarman.com/)" ], "dependencies": { "@ladjs/browserslist-config": "^0.0.1", "cac": "^6.7.1", "camelcase": "^6.2.0", "github-username-regex": "^1.0.0", "is-email": "^1.0.0", "is-url": "^1.2.4", "is-valid-npm-name": "^0.0.5", "npm-conf": "^1.1.3", "sao": "0.x", "semver": "^7.3.4", "speakingurl": "^14.0.1", "superb": "^4.0.0", "update-notifier": "^5.1.0", "uppercamelcase": "^3.0.0" }, "devDependencies": { "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "ava": "^3.15.0", "codecov": "^3.8.1", "cross-env": "^7.0.3", "eslint": "^7.19.0", "eslint-config-xo-lass": "^1.0.5", "eslint-plugin-compat": "^3.9.0", "eslint-plugin-no-smart-quotes": "^1.1.0", "husky": "^5.0.9", "lint-staged": "^10.5.4", "nyc": "^15.1.0", "remark-cli": "^9.0.0", "remark-preset-github": "^4.0.1", "xo": "^0.37.1" }, "engines": { "node": ">=12.11.0" }, "homepage": "https://github.com/ladjs/lad", "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "keywords": [ "ava", "boilerplate", "codecov", "es6", "es7", "flavored", "generator", "gfm", "github", "lad", "license", "license-generator", "markdown", "module", "np", "npm", "nyc", "package", "prettier", "project", "remark", "sao", "scaffold", "spdx", "starter", "xo", "yeoman" ], "license": "MIT", "main": "sao.js", "nyc": { "reporter": [ "lcov", "html", "text" ] }, "prettier": { "singleQuote": true, "bracketSpacing": true, "trailingComma": "none" }, "remarkConfig": { "plugins": [ "preset-github" ] }, "repository": { "type": "git", "url": "https://github.com/ladjs/lad" }, "scripts": { "ava": "cross-env NODE_ENV=test ava", "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov", "lint": "xo && remark . -qfo", "nyc": "cross-env NODE_ENV=test nyc ava", "pretest": "npm run lint", "test": "npm run ava && cd template && yarn && npm run test", "test-coverage": "npm run lint && npm run nyc && cd template && yarn && npm run test-coverage" }, "xo": { "prettier": true, "space": true, "extends": [ "xo-lass" ], "ignores": [ "config.js", "template/**/*", "template/**/**/*" ] } }