-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
97 lines (97 loc) · 3.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"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"
]
}