UNPKG

dot-ify

Version:

make dot templates 'requireable' when using browserify

66 lines (65 loc) 2.35 kB
{ "name": "dot-ify", "version": "0.1.0", "description": "make dot templates 'requireable' when using browserify", "main": "index.js", "scripts": { "beautify": "esbeautifier 'index.js' 'specs/**/*.js'", "beautify-check": "esbeautifier -k 'index.js' 'specs/**/*.js'", "eslint": "eslinter 'index.js' 'specs/**/*.js'", "test": "mocha-runner 'specs/**/*.js'", "cover": "istanbul cover -x 'specs/**/*.js' mocha-runner 'specs/**/*.js' html text-summary", "watch": "watch-spawn -i -p 'specs/**/*.js' -p 'index.js' npm run cover", "lint": "npm run beautify && npm run eslint && npm test", "verify": "npm run beautify-check && npm run eslint && npm test", "install-hooks": "prepush install && changelogx install-hook && precommit install", "changelog": "changelogx -f markdown -o ./changelog.md", "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify", "pre-v": "npm run verify", "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify", "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v", "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v", "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v", "bundle": "browserify test/index.js -t ./index.js | node" }, "keywords": [ "browserify-plugin", "browserify plugin", "browserify transform", "dotify", "require .dot files" ], "repository": { "type": "git", "url": "https://github.com/royriojas/dot-ify" }, "license": "MIT", "author": "Roy Riojas (http://royriojas.com)", "prepush": [ "npm run verify" ], "precommit": { "tasks": [ "npm run verify" ], "onDirtyState": "stash" }, "dependencies": { "browserify-transform-tools": "^1.5.0", "browserify-transform-tools-exclude": "^0.1.1", "dash-2-camel": "^0.1.0", "dot": "^1.0.3" }, "devDependencies": { "browserify": "^11.0.1", "changelogx": "^1.0.18", "esbeautifier": "^4.2.11", "eslinter": "^2.3.3", "istanbul": "^0.3.18", "mocha-runner": "^1.1.1", "precommit": "^1.1.5", "prepush": "^3.1.4", "spawnly": "^1.0.1", "watch-spawn": "^1.0.5" } }