forked from rbenv/rbenv-installer
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "@nodenv/nodenv-installer",
"version": "2.0.1",
"description": "Installer and doctor scripts for nodenv",
"homepage": "https://github.com/nodenv/nodenv-installer#readme",
"contributors": [
"Jason Karns <jason.karns@gmail.com> (http://jasonkarns.com)",
"Mislav Marohnić <mislav.marohnic@gmail.com> (https://github.com/mislav)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nodenv/nodenv-installer.git"
},
"bugs": {
"url": "https://github.com/nodenv/nodenv-installer/issues"
},
"directories": {
"bin": "bin",
"test": "test"
},
"files": [
"bin"
],
"scripts": {
"test": "bats ${CI:+--tap} test",
"posttest": "npm run lint",
"lint": "git ls-files bin test | xargs shellcheck",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@nodenv/nodenv": "^1",
"bats": "^1",
"bats-assert": "github:bats-core/bats-assert",
"bats-support": "github:bats-core/bats-support",
"shellcheck": "^2"
},
"keywords": [
"nodenv",
"install",
"installer",
"doctor",
"debug",
"help"
]
}