tunnckoCore/gana-compile

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "gana-compile",
  "version": "1.0.1",
  "description": "Pretty small synchronous template engine built on ES2015 Template Strings, working on `node@0.10` too. No RegExps, support for helpers and what you want. Use [gana][] if you wanna both async and sync support.",
  "repository": "tunnckoCore/gana-compile",
  "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:ganaCompile -o dist/gana-compile.js",
    "postbundle": "uglifyjs dist/gana-compile.js -m -c -o dist/gana-compile.min.js --source-map dist/gana-compile.min.js.map",
    "standalone": "browserify -ds ganaCompile index.js -o dist/gana-compile.standalone.js",
    "poststandalone": "uglifyjs dist/gana-compile.standalone.js -m -c -o dist/gana-compile.standalone.min.js --source-map dist/gana-compile.standalone.min.js.map",
    "prelint": "npm install",
    "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",
    "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": {
    "isobject": "^2.1.0"
  },
  "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.0.0",
    "standard-version": "^2.4.0",
    "uglify-js": "^2.7.3"
  },
  "files": [
    "index.js",
    "dist/"
  ],
  "keywords": [
    "browser",
    "compile",
    "easy",
    "es",
    "es--template",
    "fast",
    "fun",
    "gana",
    "gana-compile",
    "helper",
    "helpers",
    "kb",
    "layouts",
    "node",
    "partials",
    "small",
    "strings",
    "sync",
    "synchronous",
    "template",
    "template-strings",
    "tpl",
    "tpl-strings"
  ],
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "standard": {
    "ignore": [
      "dist/**"
    ]
  },
  "verb": {
    "run": true,
    "toc": false,
    "layout": "empty",
    "tasks": [
      "readme"
    ],
    "related": {
      "list": [
        "es6-template",
        "octet",
        "j140",
        "engine-base",
        "async-helpers"
      ]
    },
    "reflinks": [
      "assemble",
      "engine",
      "engine-base",
      "engine-cache",
      "generate",
      "standard",
      "templates",
      "update",
      "verb",
      "es6-template",
      "gana"
    ],
    "lint": {
      "reflinks": true
    }
  }
}