-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "npm-registry-firewall",
"version": "2.13.2",
"description": "npm registry proxy with on-the-fly filtering",
"main": "src/main/js/index.js",
"bin": "src/main/js/cli.js",
"type": "module",
"exports": {
".": {
"types": "./src/main/js/index.d.ts",
"import": "./src/main/js/index.js",
"default": "./src/main/js/index.js"
},
"./audit": "./src/main/js/firewall/plugins/audit.js",
"./std": "./src/main/js/firewall/plugins/std.js"
},
"types": "./src/main/js/index.d.ts",
"engines": {
"node": ">= 14"
},
"scripts": {
"docs": "mkdir -p docs && cp ./README.md ./docs/README.md",
"start": "node src/main/js/cli.js config.cjs",
"test": "node src/test/js/all.js",
"test:bun": "bun src/test/js/all.js",
"test:cov": "c8 npm run test && c8 report -r lcov"
},
"files": [
"src/main",
"ssl"
],
"repository": {
"type": "git",
"url": "git+https://github.com/antongolub/npm-registry-firewall.git"
},
"keywords": [
"npm",
"registry",
"firewall",
"proxy"
],
"author": "Anton Golub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/antongolub/npm-registry-firewall/issues"
},
"homepage": "https://github.com/antongolub/npm-registry-firewall#readme",
"devDependencies": {
"c8": "^8.0.1",
"fflate": "^0.8.1"
}
}