client-templates
Version:
roots extension that precompiles templates for use on the client side
47 lines (46 loc) • 1.3 kB
JSON
{
"name": "client-templates",
"version": "0.2.0",
"author": "Carrot Creative <dev@carrotcreative.com>",
"description": "roots extension that precompiles templates for use on the client side",
"license": "MIT",
"keywords": [
"roots-extension",
"precompile",
"client-side",
"templates"
],
"repository": {
"type": "git",
"url": "https://github.com/carrot/roots-client-templates.git"
},
"main": "lib",
"dependencies": {
"lodash": "3.x",
"minimatch": "2.x",
"roots-util": "0.1.x",
"uglify-js": "2.4.x",
"umd": "2.x",
"when": "3.x"
},
"devDependencies": {
"chai": "1.x",
"chai-as-promised": "4.x",
"coffee-script": "1.8.x",
"coffeelint": "1.x",
"coveralls": "2.x",
"istanbul": "0.3.x",
"mocha": "2.x",
"mocha-lcov-reporter": "0.0.1",
"roots": "3.x"
},
"scripts": {
"test": "npm run lint && mocha",
"lint": "find lib/ -name '*.coffee' | xargs coffeelint",
"coverage": "make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild",
"coveralls": "make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild"
},
"engines": {
"node": ">=0.10.0"
}
}