-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "@nodenv/nodenv-aliases",
"version": "2.0.2",
"description": "Create aliases for nodenv Node versions",
"homepage": "https://github.com/nodenv/nodenv-aliases#readme",
"license": "MIT",
"contributors": [
"Jason Karns <[email protected]> (http://jason.karns.name)",
"Tim Pope (https://tpo.pe)"
],
"repository": {
"type": "git",
"url": "https://github.com/nodenv/nodenv-aliases.git"
},
"bugs": {
"url": "https://github.com/nodenv/nodenv-aliases/issues"
},
"directories": {
"bin": "bin",
"test": "test"
},
"files": [
"bin",
"etc"
],
"scripts": {
"start": "bin/nodenv-alias",
"test": "bats ${CI:+--tap} test",
"posttest": "npm run lint",
"lint": "git ls-files bin etc test/*.*sh | xargs shellcheck",
"postversion": "git push --follow-tags"
},
"dependencies": {
"sh-semver": "git+https://github.com/qzb/sh-semver.git"
},
"devDependencies": {
"@nodenv/nodenv": "^1.5.0",
"bats": "^1.11.0",
"bats-assert": "jasonkarns/bats-assert-1",
"bats-mock": "^1.2.5",
"bats-support": "jasonkarns/bats-support",
"shellcheck": "^3.0.0"
}
}