tunnckoCore/gana

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "gana",
  "version": "1.1.1",
  "description": "Small and powerful template engine with only sync and async compile. The mid-level between [es6-template][] and [gana-compile][].",
  "repository": "tunnckoCore/gana",
  "author": "Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)",
  "precommit.silent": true,
  "main": "index.js",
  "license": "MIT",
  "scripts": {
    "prebuild": "npm install && npm test && mkdirp dist",
    "build": "npm run bundle && npm run standalone",
    "bundle": "browserify -dr ./index.js:gana -o dist/gana.js",
    "postbundle": "uglifyjs dist/gana.js -m -c -o dist/gana.min.js --source-map dist/gana.min.js.map",
    "standalone": "browserify -ds gana index.js -o dist/gana.standalone.js",
    "poststandalone": "uglifyjs dist/gana.standalone.js -m -c -o dist/gana.standalone.min.js --source-map dist/gana.standalone.min.js.map",
    "lint": "standard --verbose",
    "pretest": "npm run lint",
    "test": "npm run coverage",
    "posttest": "npm run lint:coverage",
    "coverage": "nyc node test.js",
    "lint:coverage": "nyc check-coverage --lines 100 --branches 100 --statements 100 --functions 100",
    "report-coverage": "nyc report --reporter=text-lcov | coveralls",
    "prerelease": "npm test",
    "release": "standard-version --sign --no-verify",
    "precommit": "git add --all",
    "commit": "git-cz"
  },
  "dependencies": {
    "gana-compile": "^1.0.1",
    "try-catch-callback": "^2.0.1"
  },
  "devDependencies": {
    "browserify": "^13.1.0",
    "commitizen": "^2.8.6",
    "coveralls": "^2.11.12",
    "cz-conventional-changelog": "^1.2.0",
    "mkdirp": "^0.5.1",
    "mukla": "^0.4.1",
    "nyc": "^8.1.0",
    "pre-commit": "^1.1.3",
    "standard": "^8.1.0",
    "standard-version": "^2.4.0",
    "uglify-js": "^2.7.3"
  },
  "files": [
    "dist/",
    "index.js"
  ],
  "keywords": [
    "gana"
  ],
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "standard": {
    "ignore": [
      "dist/**"
    ]
  },
  "verb": {
    "run": true,
    "toc": false,
    "layout": "empty",
    "tasks": [
      "readme"
    ],
    "related": {
      "list": [
        "es6-template",
        "gana-compile",
        "octet",
        "j140",
        "engine-base",
        "async-helpers"
      ]
    },
    "reflinks": [
      "assemble",
      "engine",
      "engine-base",
      "engine-cache",
      "generate",
      "standard",
      "templates",
      "update",
      "verb",
      "es6-template",
      "gana",
      "gana-compile"
    ],
    "lint": {
      "reflinks": true
    }
  }
}