UNPKG

3 kBJSONView Raw
1{
2 "name": "persistify",
3 "version": "0.1.5",
4 "description": "a wrapper around `browserify` and `watchify` to make incremental builds without the need of the watch mode",
5 "main": "index.js",
6 "bin": "bin/cmd.js",
7 "scripts": {
8 "beautify": "esbeautifier 'index.js' 'specs/**/*.js'",
9 "beautify-check": "esbeautifier -k 'index.js' 'specs/**/*.js'",
10 "eslint": "eslinter 'index.js' 'specs/**/*.js'",
11 "lint": "npm run beautify && npm run eslint",
12 "verify": "npm run beautify-check && npm run eslint",
13 "install-hooks": "prepush install && changelogx install-hook && precommit install",
14 "changelog": "changelogx -f markdown -o ./changelog.md",
15 "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
16 "pre-v": "npm run verify",
17 "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
18 "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
19 "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
20 "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
21 "bundle": "./bin/cmd.js demo/dep1.js -o dist/bundle.js",
22 "bundle:watch": "./bin/cmd.js demo/dep1.js -o dist/bundle.js --watch"
23 },
24 "repository": {
25 "type": "git",
26 "url": "https://github.com/royriojas/persistify"
27 },
28 "license": "MIT",
29 "author": "Roy Riojas (http://royriojas.com)",
30 "prepush": [
31 "npm run verify"
32 ],
33 "precommit": [
34 "npm run verify"
35 ],
36 "devDependencies": {
37 "babelify": "^6.1.3",
38 "browserify": "^11.0.1",
39 "changelogx": "^1.0.18",
40 "esbeautifier": "^4.2.11",
41 "eslinter": "^2.3.3",
42 "precommit": "^1.1.5",
43 "prepush": "^3.1.4",
44 "react": "^0.13.3"
45 },
46 "dependencies": {
47 "file-entry-cache": "^1.0.1",
48 "flat-cache": "^1.0.3",
49 "glob-expand": "^0.1.0",
50 "hash-string": "^1.0.0",
51 "jq-trim": "^0.1.1",
52 "outpipe": "^1.1.1",
53 "through2": "^2.0.0",
54 "watchify": "https://github.com/royriojas/watchify/tarball/master",
55 "xtend": "^4.0.0"
56 },
57 "changelogx": {
58 "ignoreRegExp": [
59 "BLD: Release",
60 "DOC: Generate Changelog",
61 "Generated Changelog",
62 "REF: formatted missing files"
63 ],
64 "issueIDRegExp": "#(\\d+)",
65 "commitURL": "https://github.com/royriojas/persistify/commit/{0}",
66 "authorURL": "https://github.com/{0}",
67 "issueIDURL": "https://github.com/royriojas/persistify/issues/{0}",
68 "projectName": "persistify"
69 },
70 "bugs": {
71 "url": "https://github.com/royriojas/persistify/issues"
72 },
73 "homepage": "https://github.com/royriojas/persistify",
74 "keywords": [
75 "watchify",
76 "browserify",
77 "cache",
78 "incremental build",
79 "incremental browserify",
80 "browserify incremental",
81 "browserify-incremental",
82 "browserify with cache",
83 "browserify plugin",
84 "browserify-plugin",
85 "browserify transform"
86 ]
87}