-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 972 Bytes
/
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
{
"name": "@nodenv/nodenv-man",
"version": "1.1.0",
"homepage": "https://github.com/nodenv/nodenv-man#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nodenv/nodenv-man.git"
},
"bugs": {
"url": "https://github.com/nodenv/nodenv-man/issues"
},
"directories": {
"bin": "bin",
"test": "test"
},
"files": [
"bin"
],
"scripts": {
"start": "bin/nodenv-man",
"test": "bats ${CI:+--tap} test",
"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": {
"bats": "^1.11.1",
"bats-assert": "jasonkarns/bats-assert-1",
"bats-mock": "^1.2.5",
"bats-support": "jasonkarns/bats-support",
"brew-publish": "^2.3.1"
}
}