-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.55 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
54
55
{
"name": "@nodenv/node-build-update-defs",
"version": "2.11.3",
"description": "A nodenv plugin to generate node-build definitions from nodejs.org.",
"homepage": "https://github.com/nodenv/node-build-update-defs#readme",
"license": "MIT",
"author": "Jason Karns <jason.karns@gmail.com> (http://jasonkarns.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/nodenv/node-build-update-defs.git"
},
"bugs": {
"url": "https://github.com/nodenv/node-build-update-defs/issues"
},
"engines": {
"node": ">=6"
},
"directories": {
"bin": "bin",
"lib": "src",
"test": "test"
},
"main": "index.js",
"files": [
"bin",
"src",
"script",
"share"
],
"scripts": {
"clean": "git clean -f -- share",
"start": "npm run defs:scrape",
"defs:scrape": "bin/nodenv-update-version-defs",
"defs:commit": "script/commit-definitions",
"defs:verify": "script/verify-definitions",
"defs:submit": "script/submit-definitions",
"defs:lint:lts": "script/lts-lint-definitions",
"test": "bats ${CI:+--tap} test",
"posttest": "npm run lint",
"lint": "npm run lint:js && npm run lint:shell && npm run lint:format",
"lint:format": "prettier --write .",
"lint:js": "eslint --fix",
"lint:shell": "git ls-files bin script | xargs shellcheck",
"postinstall": "script/postinstall",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"neostandard": "^0.13.0",
"prettier": "3"
},
"prettier": {
"semi": false,
"trailingComma": "none"
}
}