-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "nginx-binaries",
"version": "0.7.0",
"description": "A downloader for nginx and njs standalone binaries.",
"author": "Jakub Jirutka <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/jirutka/nginx-binaries",
"bugs": "https://github.com/jirutka/nginx-binaries/issues",
"repository": {
"type": "git",
"url": "https://github.com/jirutka/nginx-binaries.git"
},
"keywords": [
"nginx",
"njs",
"binary",
"binaries",
"static-binaries",
"cross-platform"
],
"type": "commonjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && rm -f lib/internal/*.d.ts*",
"clean": "rm -rf lib/ node_modules/.cache/",
"lint": "tsc --noEmit",
"prepublishOnly": "yarn build && asciidoctor -b docbook -a npm-readme -a gh-branch=v$npm_package_version -o - README.adoc | pandoc -f docbook -t gfm --shift-heading-level-by 1 --wrap preserve -o README.md",
"test": "nyc mocha"
},
"engines": {
"node": ">= 14.15.0"
},
"dependencies": {
"node-fetch": "^2.6.11",
"semver": "^7.3.4"
},
"devDependencies": {
"@types/chai": "~4.3.5",
"@types/debug": "^4.1.5",
"@types/finalhandler": "~1.2.0",
"@types/mocha": "~10.0.1",
"@types/node": "~18.16.13",
"@types/node-fetch": "~2.6.4",
"@types/proxyquire": "~1.3.28",
"@types/semver": "~7.5.0",
"@types/serve-static": "~1.15.1",
"anylogger": "~1.0.10",
"anylogger-debug": "~1.0.3",
"chai": "~4.3.7",
"debug": "~4.3.1",
"finalhandler": "~1.2.0",
"get-port": "~5.1.1",
"mocha": "~10.2.0",
"nyc": "~15.1.0",
"proxyquire": "~2.1.3",
"serve-static": "~1.15.0",
"ts-mockito": "~2.6.1",
"ts-node": "~10.9.1",
"typescript": "~5.0.4"
}
}