tunnckoCore/gruu

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "gruu",
  "version": "0.2.1",
  "description": "Microscopic test runner, built on Promises and ~100 SLoC. Modern, powerful and ES2017 ready.",
  "repository": "tunnckoCore/gruu",
  "author": "Charlike Mike Reagent <@tunnckoCore> (https://i.am.charlike.online)",
  "precommit.silent": true,
  "main": "index.js",
  "license": "MIT",
  "scripts": {
    "lint": "standard api.js index.js lib/utils.js lib/reporter.js --fix --verbose",
    "test": "npm-run-all -s lint test:*",
    "test:api": "nyc node test.js",
    "test:report": "nyc report",
    "prerelease": "npm test",
    "release": "standard-version --sign --no-verify",
    "git": "npm-run-all -s git:*",
    "git:add": "git add --all",
    "git:cz": "git-cz",
    "commit": "npm-run-all -s test git"
  },
  "dependencies": {
    "arrify": "^1.0.1",
    "asap": "^2.0.5",
    "dush": "^2.0.2",
    "get-fn-name": "^1.0.0",
    "p-finally": "^1.0.0",
    "p-map": "^1.1.1",
    "p-map-series": "^1.0.0",
    "p-reflect": "^1.0.0"
  },
  "devDependencies": {
    "commitizen": "^2.9.6",
    "cz-conventional-changelog": "^1.2.0",
    "delay": "^1.3.1",
    "mukla": "^0.4.8",
    "npm-run-all": "^4.0.1",
    "nyc": "^10.1.2",
    "pre-commit": "^1.2.2",
    "rollup": "^0.41.5",
    "rollup-plugin-buble": "^0.15.0",
    "rollup-plugin-commonjs": "^8.0.0",
    "rollup-plugin-node-resolve": "^2.0.0",
    "standard": "^9.0.0",
    "standard-version": "^4.0.0"
  },
  "files": [
    "api.js",
    "index.js",
    "lib/"
  ],
  "keywords": [],
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "standard": {
    "ignore": [
      "dist/**"
    ]
  },
  "verb": {
    "run": true,
    "toc": {
      "render": true,
      "method": "preWrite",
      "maxdepth": 3
    },
    "layout": "empty",
    "tasks": [
      "readme"
    ],
    "related": {
      "list": [
        "always-done",
        "minibase",
        "try-catch-core"
      ],
      "highlight": "always-done"
    },
    "lint": {
      "reflinks": true
    }
  },
  "engines": {
    "node": ">=4.6",
    "npm": ">=2"
  },
  "nyc": {
    "check-coverage": true,
    "statements": 0,
    "functions": 0,
    "branches": 0,
    "lines": 0
  }
}