UNPKG

3.12 kBJSONView Raw
1{
2 "name": "persistify",
3 "version": "1.1.0",
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' 'bin/**/*.js' 'specs/**/*.js'",
9 "beautify-check": "npm run beautify -- -k",
10 "eslint": "eslinter 'index.js' 'bin/**/*.js' 'specs/**/*.js'",
11 "eslint-fix": "npm run eslint -- --fix",
12 "autofix": "npm run beautify && npm run eslint-fix",
13 "check": "npm run beautify-check && npm run eslint",
14 "verify": "npm run check",
15 "install-hooks": "prepush install && changelogx install-hook && precommit install",
16 "changelog": "changelogx -f markdown -o ./changelog.md",
17 "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
18 "pre-v": "npm run verify",
19 "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
20 "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
21 "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
22 "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
23 "bundle": "./bin/cmd.js demo/dep1.js -o dist/bundle.js -t simplessy",
24 "test": "npm run verify",
25 "bundle:watch": "./bin/cmd.js demo/dep1.js -o dist/bundle.js -t simplessy --watch"
26 },
27 "repository": {
28 "type": "git",
29 "url": "https://github.com/royriojas/persistify"
30 },
31 "license": "MIT",
32 "author": "Roy Riojas (http://royriojas.com)",
33 "prepush": [
34 "npm run verify"
35 ],
36 "precommit": [
37 "npm run verify"
38 ],
39 "devDependencies": {
40 "babelify": "^6.1.3",
41 "changelogx": "^1.0.18",
42 "esbeautifier": "^6.1.8",
43 "eslinter": "^3.2.1",
44 "precommit": "^1.1.5",
45 "prepush": "^3.1.4",
46 "react": "^0.13.3",
47 "simplessy": "^1.0.2"
48 },
49 "dependencies": {
50 "browserify": "^12.0.1",
51 "file-entry-cache": "^1.2.0",
52 "flat-cache": "^1.2.1",
53 "hash-string": "^1.0.0",
54 "jq-trim": "^0.1.1",
55 "outpipe": "^1.1.1",
56 "subarg": "^1.0.0",
57 "through2": "^2.0.0",
58 "watchify": "^3.6.1",
59 "xtend": "^4.0.0"
60 },
61 "changelogx": {
62 "ignoreRegExp": [
63 "BLD: Release",
64 "DOC: Generate Changelog",
65 "Generated Changelog",
66 "REF: formatted missing files"
67 ],
68 "issueIDRegExp": "#(\\d+)",
69 "commitURL": "https://github.com/royriojas/persistify/commit/{0}",
70 "authorURL": "https://github.com/{0}",
71 "issueIDURL": "https://github.com/royriojas/persistify/issues/{0}",
72 "projectName": "persistify"
73 },
74 "bugs": {
75 "url": "https://github.com/royriojas/persistify/issues"
76 },
77 "homepage": "https://github.com/royriojas/persistify",
78 "keywords": [
79 "watchify",
80 "browserify",
81 "cache",
82 "incremental build",
83 "incremental browserify",
84 "browserify incremental",
85 "browserify-incremental",
86 "browserify with cache",
87 "browserify plugin",
88 "browserify-plugin",
89 "browserify transform"
90 ]
91}