-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
71 lines (71 loc) · 2.37 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
{
"name": "remapify",
"version": "2.2.0",
"description": "Alias directories of files for browserify",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"audit": "npm audit",
"test": "mocha test/*.js",
"tdd": "nodemon -x npm -i node_modules/ -- test",
"note1": "we can't have nice things. prepublish also runs on npm install https://github.com/npm/npm/issues/6394 in-publish hacks around this",
"prepublish": "in-publish && source ./scripts.sh && npm prune && npm run audit && npm run gitPush || in-install",
"lint": "eslint .",
"requireGitClean": "source ./scripts.sh && git_require_clean_work_tree",
"note2": "--no-verify skips the commit hook",
"nsp": "npm run audit",
"dmn": "dmn gen -f . && if [[ $(git diff --shortstat 2> /dev/null | tail -n1) != '' ]]; then git add .npmignore && git commit --no-verify -m'update npmignore'; fi",
"doctoc": "doctoc README.md && if [ -f CONTRIBUTING.md ]; then doctoc CONTRIBUTING.md; fi && if [[ $(git diff --shortstat 2> /dev/null | tail -n1) != '' ]]; then git add README.md CONTRIBUTING.md && git commit --no-verify -m'table of contents update'; fi",
"gitPull": "git pull --rebase origin master",
"gitPush": "git push --follow-tags --no-verify && git push --tags --no-verify",
"release": "source ./scripts.sh && npm run requireGitClean && npm run gitPull && npm run dmn && npm run doctoc && npm_release $@"
},
"repository": {
"type": "git",
"url": "git://github.com/joeybaker/remapify.git"
},
"keywords": [
"browserify-plugin",
"alias",
"directory",
"rename",
"browserify",
"browser",
"commonjs",
"folder"
],
"authors": [
{
"name": "Joey Baker",
"email": "joey@byjoeybaker.com",
"url": "https://byjoeybaker.com"
}
],
"license": "Artistic-2.0",
"bugs": {
"url": "https://github.com/joeybaker/remapify/issues"
},
"homepage": "https://github.com/joeybaker/remapify",
"dependencies": {
"glob": "^7.1.3",
"lodash": "^4.17.11"
},
"devDependencies": {
"browserify": "^16.2.3",
"chai": "^4.2.0",
"dmn": "^2.0.0",
"doctoc": "^1.3.1",
"eslint": "^5.6.1",
"in-publish": "^2.0.0",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0"
},
"peerDependencies": {
"browserify": ">=16.2.0"
}
}