forked from nodenv/node-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.92 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
50
51
52
53
54
55
{
"name": "@nodenv/node-build",
"version": "4.9.64",
"description": "Install NodeJS versions",
"homepage": "https://github.com/nodenv/node-build#readme",
"license": "MIT",
"contributors": [
"Jason Karns <[email protected]> (http://jason.karns.name)",
"Sam Stephenson <[email protected]> (http://sstephenson.us)",
"Will McKenzie <[email protected]> (http://www.oinutter.co.uk)"
],
"repository": {
"type": "git",
"url": "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",
"relnotes": "changelog -- bin etc share",
"unmerged": "git for-each-ref refs/rbenv-tags --format='%(refname)' --merged"
},
"devDependencies": {
"@nodenv/devutil": "^0.1.1",
"@nodenv/node-build-update-defs": "^2.11.0",
"bats": "^1.5.0",
"bats-assert": "jasonkarns/bats-assert-1",
"bats-mock": "^1.0.1",
"bats-support": "jasonkarns/bats-support"
}
}