UNPKG

persistify

Version:

a wrapper around `browserify` and `watchify` to make incremental builds without the need of the watch mode

87 lines (86 loc) 2.97 kB
{ "name": "persistify", "version": "0.2.0", "description": "a wrapper around `browserify` and `watchify` to make incremental builds without the need of the watch mode", "main": "index.js", "bin": "bin/cmd.js", "scripts": { "beautify": "esbeautifier 'index.js' 'specs/**/*.js'", "beautify-check": "esbeautifier -k 'index.js' 'specs/**/*.js'", "eslint": "eslinter 'index.js' 'specs/**/*.js'", "lint": "npm run beautify && npm run eslint", "verify": "npm run beautify-check && npm run eslint", "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": "./bin/cmd.js demo/dep1.js -o dist/bundle.js", "bundle:watch": "./bin/cmd.js demo/dep1.js -o dist/bundle.js --watch" }, "repository": { "type": "git", "url": "https://github.com/royriojas/persistify" }, "license": "MIT", "author": "Roy Riojas (http://royriojas.com)", "prepush": [ "npm run verify" ], "precommit": [ "npm run verify" ], "devDependencies": { "babelify": "^6.1.3", "changelogx": "^1.0.18", "esbeautifier": "^4.2.11", "eslinter": "^2.3.3", "precommit": "^1.1.5", "prepush": "^3.1.4", "react": "^0.13.3" }, "dependencies": { "browserify": "^11.0.1", "file-entry-cache": "^1.2.0", "flat-cache": "^1.0.3", "hash-string": "^1.0.0", "jq-trim": "^0.1.1", "outpipe": "^1.1.1", "through2": "^2.0.0", "watchify": "https://github.com/royriojas/watchify/tarball/master", "xtend": "^4.0.0" }, "changelogx": { "ignoreRegExp": [ "BLD: Release", "DOC: Generate Changelog", "Generated Changelog", "REF: formatted missing files" ], "issueIDRegExp": "#(\\d+)", "commitURL": "https://github.com/royriojas/persistify/commit/{0}", "authorURL": "https://github.com/{0}", "issueIDURL": "https://github.com/royriojas/persistify/issues/{0}", "projectName": "persistify" }, "bugs": { "url": "https://github.com/royriojas/persistify/issues" }, "homepage": "https://github.com/royriojas/persistify", "keywords": [ "watchify", "browserify", "cache", "incremental build", "incremental browserify", "browserify incremental", "browserify-incremental", "browserify with cache", "browserify plugin", "browserify-plugin", "browserify transform" ] }