-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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-vars",
"version": "1.2.0",
"description": "A nodenv plugin that safely sets global and per-project environment variables",
"homepage": "https://github.com/nodenv/nodenv-vars#readme",
"license": "MIT",
"contributors": [
"Jason Karns <[email protected]> (http://jason.karns.name)",
"Sam Stephenson <[email protected]> (http://sstephenson.us)",
"Will McKenzie <[email protected]> (http://www.oinutter.co.uk)"
],
"repository": {
"type": "git",
"url": "https://github.com/nodenv/nodenv-vars.git"
},
"bugs": {
"url": "https://github.com/nodenv/nodenv-vars/issues"
},
"directories": {
"bin": "bin"
},
"files": [
"bin",
"etc"
],
"scripts": {
"start": "bin/npm-vars",
"posttest": "npm run lint",
"lint": "git ls-files bin etc | 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"
}
}