forked from nodenv/node-build
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.93 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.93 KB
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
50
51
52
53
{
"name": "@nodenv/node-build",
"version": "5.4.26",
"description": "A tool to download, compile, and install Node on Unix-like systems.",
"homepage": "https://github.com/nodenv/node-build#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": "git+https://github.com/nodenv/node-build.git"
},
"bugs": {
"url": "https://github.com/nodenv/node-build/issues"
},
"publishConfig": {
"access": "public"
},
"directories": {
"bin": "bin",
"test": "test"
},
"files": [
"bin",
"etc",
"share"
],
"scripts": {
"clean": "git clean -f -- share",
"start": "bin/node-build",
"scrape-definitions": "nodenv-update-version-defs --nodejs --chakracore --graal -d share/node-build/",
"commit-definitions": "npm explore @nodenv/node-build-update-defs -- npm run defs:commit --",
"submit-definitions": "npm explore @nodenv/node-build-update-defs -- npm run defs:submit --",
"test": "bats ${CI:+--tap} test",
"lint": "git ls-files bin script **/*.*sh | xargs shellcheck",
"lint:lts": "npm explore @nodenv/node-build-update-defs -- npm run defs:lint:lts -- \"$PWD/share/node-build\"",
"lint:checksums": "npm explore @nodenv/node-build-update-defs -- npm run defs:verify --",
"preversion": "script/preversion",
"version": "script/version-sync",
"postversion": "git push --follow-tags",
"unmerged": "git for-each-ref refs/rbtags --format='%(creatordate:short) %(refname:short) https://github.com/rbenv/ruby-build/releases/tag/%(refname:lstrip=-1)' --no-merged"
},
"devDependencies": {
"@nodenv/node-build-update-defs": "2",
"bats": "1",
"bats-assert": "2",
"bats-mock": "1",
"bats-support": "^0.3.0"
}
}