SnareChops/SQiggL

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "sqiggl",
  "version": "0.4.0",
  "description": "A SQL templating language with extensible support",
  "main": "dist/index.js",
  "typings": "dist/index",
  "scripts": {
    "test": "./node_modules/.bin/tsc -p . && ./node_modules/.bin/mocha --reporter mocha-junit-reporter dist/test/test.js",
    "posttest": "npm run cover && ./node_modules/.bin/codeclimate-test-reporter < ./coverage/lcov.info",
    "cover": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -R spec dist/test/test.js",
    "postcover": "node_modules/.bin/mocha -R markdown dist/test/test.js > docs/tests.md && node_modules/.bin/mocha -R doc dist/test/test.js > docs/tests.html",
    "prepare": "tsc && browserify dist/index.js -o dist/browser.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/SnareChops/SQiggL.git"
  },
  "keywords": [
    "SQL",
    "parser",
    "generation",
    "token",
    "replacement",
    "templating",
    "template"
  ],
  "author": "SnareChops <snare_chops@yahoo.com>",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/SnareChops/SQiggL/issues"
  },
  "homepage": "https://github.com/SnareChops/SQiggL",
  "devDependencies": {
    "codeclimate-test-reporter": "^0.1.1",
    "istanbul": "^0.4.1",
    "mocha": "^2.3.4",
    "mocha-junit-reporter": "^1.9.1",
    "should": "^8.0.2",
    "typescript": "^1.7.5"
  },
  "tonicExampleFilename": "example.js"
}