-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "@nodenv/nodenv-each",
"version": "1.3.0",
"description": "nodenv plugin to run a command across all installed nodes",
"homepage": "https://github.com/nodenv/nodenv-each#readme",
"license": "MIT",
"contributors": [
"Chris Eppstein <[email protected]> (http://chriseppstein.github.com)",
"Jason Karns <[email protected]> (http://jason.karns.name)"
],
"repository": {
"type": "git",
"url": "https://github.com/nodenv/nodenv-each.git"
},
"bugs": {
"url": "https://github.com/nodenv/nodenv-each/issues"
},
"directories": {
"bin": "bin",
"lib": "libexec",
"test": "test"
},
"files": [
"bin"
],
"scripts": {
"start": "bin/nodenv-each",
"posttest": "npm run lint",
"lint": "git ls-files bin | xargs shellcheck",
"postversion": "npm publish",
"prepublishOnly": "npm run publish:github && npm run publish:brew",
"publish:brew": "brew-publish",
"publish:github": "git push --follow-tags"
},
"devDependencies": {
"brew-publish": "^2.3.1"
}
}