forked from pyenv/pyenv-pip-migrate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "@nodenv/nodenv-npm-migrate",
"version": "0.1.1",
"description": "Migrate npm packages from one Node version to another",
"homepage": "https://github.com/nodenv/nodenv-npm-migrate#readme",
"license": "MIT",
"contributors": [
"Jason Karns <[email protected]> (http://jason.karns.name)",
"Josh Hagins <[email protected]>",
"Yuu Yamashita (https://bitbucket.org/yyuu)"
],
"repository": {
"type": "git",
"url": "https://github.com/nodenv/nodenv-npm-migrate.git"
},
"bugs": {
"url": "https://github.com/nodenv/nodenv-npm-migrate/issues"
},
"directories": {
"bin": "bin",
"lib": "libexec",
"test": "test"
},
"files": [
"bin"
],
"scripts": {
"start": "bin/nodenv-migrate",
"posttest": "npm run lint",
"lint": "git ls-files bin *.sh | 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"
}
}