-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.82 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
56
57
58
59
60
61
62
{
"name": "@gibme/iptables",
"version": "22.0.0",
"description": "A simple port iptables helper/wrapper",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"license": "MIT",
"scripts": {
"build": "yarn build:typescript",
"build:docs": "./node_modules/.bin/typedoc",
"build:typescript": "./node_modules/.bin/tsc",
"test": "yarn test:style && yarn test:typecheck && yarn test:units",
"test:typecheck": "./node_modules/.bin/tsc --noEmit",
"test:style": "yarn style",
"test:units": "node --import tsx --test --test-timeout 120000 test/test.ts",
"style": "./node_modules/.bin/eslint src/**/*.ts test/**/*.ts",
"fix-style": "./node_modules/.bin/eslint --fix src/**/*.ts test/**/*.ts",
"fix:style": "yarn fix-style",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gibme-npm/iptables.git"
},
"bugs": {
"url": "https://github.com/gibme-npm/iptables/issues"
},
"homepage": "https://gibme-npm.github.io/iptables/",
"engines": {
"node": ">=22"
},
"engineStrict": true,
"author": {
"name": "Brandon Lehmann",
"email": "brandonlehmann@gmail.com"
},
"dependencies": {
"@gibme/cache": "^22.0.0",
"@types/which": "^3.0.4",
"which": "^6.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^17.4.0",
"tsx": "^4.19.4",
"typedoc": "^0.28.18",
"typescript": "^6.0.2"
}
}