UNPKG

persistify

Version:

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

98 lines (97 loc) 3.3 kB
{ "name": "persistify", "version": "2.0.1", "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' 'bin/**/*.js' 'specs/**/*.js'", "beautify-check": "npm run beautify -- -k", "eslint": "eslint 'index.js' 'bin/**/*.js' 'specs/**/*.js' --cache --cache-location node_modules/.cache/", "eslint-fix": "npm run eslint -- --fix", "autofix": "npm run beautify && npm run eslint-fix", "check": "npm run beautify-check && npm run eslint", "verify": "npm run check", "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 -t simplessy", "test": "npm run verify", "bundle:watch": "./bin/cmd.js demo/dep1.js -o dist/bundle.js -t simplessy --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": { "babel-eslint": "8.2.2", "babelify": "^6.1.3", "browserify": "^16.1.1", "changelogx": "^1.0.18", "esbeautifier": "^6.1.8", "eslint": "4.19.1", "eslinter": "^3.2.1", "precommit": "^1.1.5", "prepush": "^3.1.4", "react": "^0.13.3", "simplessy": "^1.0.2", "watchify": "^3.11.0" }, "dependencies": { "file-entry-cache": "^1.2.0", "flat-cache": "^1.2.1", "hash-string": "^1.0.0", "jq-trim": "^0.1.1", "outpipe": "^1.1.1", "subarg": "^1.0.0", "through2": "^2.0.0", "xtend": "^4.0.0" }, "peerDependencies": { "browserify": "^16.1.1", "watchify": "^3.11.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" ] }