-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.45 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
{
"name": "@nodenv/node-build-update-defs",
"version": "2.11.1",
"description": "Scrape build definitions from nodejs.org",
"homepage": "https://github.com/nodenv/node-build-update-defs#readme",
"license": "MIT",
"author": "Jason Karns <[email protected]> (http://jason.karns.name)",
"repository": {
"type": "git",
"url": "https://github.com/nodenv/node-build-update-defs.git"
},
"bugs": {
"url": "https://github.com/nodenv/node-build-update-defs/issues"
},
"directories": {
"bin": "bin",
"lib": "src",
"test": "test"
},
"main": "index.js",
"files": [
"bin",
"src",
"script",
"share"
],
"scripts": {
"postinstall": "script/postinstall",
"clean": "git clean -f -- share",
"defs:scrape": "npm start -- ",
"defs:lint:lts": "script/lts-lint-definitions",
"defs:commit": "script/commit-definitions",
"defs:submit": "script/submit-definitions",
"defs:verify": "script/verify-definitions",
"start": "bin/nodenv-update-version-defs",
"start:dryrun": "npm start -- --dry-run",
"test": "echo todo",
"posttest": "npm run lint",
"lint": "npm run lint:js && npm run lint:shell",
"lint:js": "prettier-standard '**/*.js' && standard --fix",
"lint:shell": "git ls-files bin | xargs shellcheck",
"postversion": "git push --follow-tags"
},
"engines": {
"node": ">=6"
},
"devDependencies": {
"prettier-standard": "^16.4.1",
"standard": "^17.1.2"
}
}