123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- {
- "name": "get-paths",
- "description": "Helper function to get an absolute path for a template engine view",
- "version": "0.0.7",
- "author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
- "ava": {
- "failFast": true,
- "verbose": true
- },
- "bugs": {
- "url": "https://github.com/niftylettuce/get-paths/issues",
- "email": "niftylettuce@gmail.com"
- },
- "commitlint": {
- "extends": [
- "@commitlint/config-conventional"
- ]
- },
- "contributors": [
- "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)"
- ],
- "dependencies": {
- "pify": "^4.0.1"
- },
- "devDependencies": {
- "@commitlint/cli": "8.1.0",
- "@commitlint/config-conventional": "^8.1.0",
- "auto-bind": "^2.1.0",
- "ava": "2.3.0",
- "codecov": "^3.5.0",
- "cross-env": "^5.2.1",
- "eslint": "6.3.0",
- "eslint-config-xo-lass": "^1.0.3",
- "eslint-plugin-node": "10.0.0",
- "fixpack": "^2.3.1",
- "husky": "3.0.5",
- "lint-staged": "9.2.5",
- "nyc": "^14.1.1",
- "remark-cli": "7.0.0",
- "remark-preset-github": "^0.0.16",
- "xo": "^0.24.0"
- },
- "engines": {
- "node": ">=6.4"
- },
- "homepage": "https://github.com/niftylettuce/get-paths",
- "husky": {
- "hooks": {
- "pre-commit": "lint-staged && npm test",
- "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
- }
- },
- "keywords": [
- "get-paths",
- "lass"
- ],
- "license": "MIT",
- "lint-staged": {
- "*.js": [
- "xo --fix",
- "git add"
- ],
- "*.md": [
- "remark . -qfo",
- "git add"
- ],
- "package.json": [
- "fixpack",
- "git add"
- ]
- },
- "main": "index.js",
- "prettier": {
- "singleQuote": true,
- "bracketSpacing": true,
- "trailingComma": "none"
- },
- "remarkConfig": {
- "plugins": [
- "preset-github"
- ]
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/niftylettuce/get-paths"
- },
- "scripts": {
- "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
- "lint": "xo && remark . -qfo && eslint -c .lib.eslintrc index.js",
- "test": "npm run lint && npm run test-coverage",
- "test-coverage": "cross-env NODE_ENV=test nyc ava"
- },
- "xo": {
- "prettier": true,
- "space": true,
- "extends": [
- "xo-lass"
- ]
- }
- }
|