forked from nodenv/nodenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
47
48
49
{
"name": "@nodenv/nodenv",
"version": "1.4.0",
"description": "Manage multiple NodeJS versions",
"homepage": "/~https://github.com/nodenv/nodenv#readme",
"license": "MIT",
"contributors": [
"Jason Karns <jason.karns@gmail.com> (http://jasonkarns.com)",
"Sam Stephenson <sstephenson@gmail.com> (http://sstephenson.us)",
"Will McKenzie <willmckenzie@oinutter.co.uk> (http://www.oinutter.co.uk)"
],
"repository": {
"type": "git",
"url": "/~https://github.com/nodenv/nodenv.git"
},
"bugs": {
"url": "/~https://github.com/nodenv/nodenv/issues"
},
"directories": {
"lib": "./libexec",
"src": "./src",
"test": "./test"
},
"bin": "./libexec/nodenv",
"files": [
"completions",
"libexec",
"nodenv.d",
"src"
],
"scripts": {
"build": "src/configure && make -C src",
"clean": "src/configure && make -C src clean",
"preinstall": "npm run clean",
"postinstall": "npm run build",
"test": "bats ${CI:+--tap} test",
"test:with_native_ext": "npm run build && npm test",
"test:without_native_ext": "npm run clean && npm test",
"preversion": "script/preversion",
"version": "script/sync-version",
"postversion": "git push --follow-tags",
"unmerged": "git for-each-ref refs/rbenv-tags --format='%(refname)' --merged"
},
"devDependencies": {
"bats": "^1.1.0",
"bats-assert": "jasonkarns/bats-assert-1",
"bats-support": "jasonkarns/bats-support"
}
}