-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
46
{
"name": "@nodenv/nodenv-package-json-engine",
"version": "3.0.3",
"description": "Activate a nodenv node version from package.json engines",
"homepage": "https://github.com/nodenv/nodenv-package-json-engine#readme",
"license": "MIT",
"author": "Adam Hull (http://hurrymaplelad.com)",
"contributors": [
"Jason Karns <[email protected]> (http://jason.karns.name)"
],
"repository": {
"type": "git",
"url": "https://github.com/nodenv/nodenv-package-json-engine.git"
},
"bugs": {
"url": "https://github.com/nodenv/nodenv-package-json-engine/issues"
},
"directories": {
"bin": "bin",
"test": "test"
},
"files": [
"bin",
"etc",
"libexec"
],
"scripts": {
"lint": "git ls-files bin etc libexec test/*.bash | grep -Ev '(semver|JSON).sh' | xargs shellcheck",
"test": "bats ${CI:+--tap} test",
"posttest": "npm run lint",
"postversion": "git push --follow-tags",
"relnotes": "changelog -- bin etc libexec"
},
"devDependencies": {
"@nodenv/devutil": "^0.1.1",
"@nodenv/nodenv": "^1.5.0",
"bats": "^1.11.1",
"bats-assert": "jasonkarns/bats-assert-1",
"bats-support": "jasonkarns/bats-support",
"shellcheck": "^0.4.4"
},
"dependencies": {
"sh-semver": "qzb/sh-semver",
"JSON.sh": "~0.3.3"
}
}