forked from meguoe/ip-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.72 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
67
68
69
70
71
72
{
"name": "ip-toolkit",
"version": "1.0.12",
"description": "A utility library for manipulating IPv4 and IPv6 address in Node.js.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"test": "jest",
"build": "tsup",
"prepare": "husky install",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"lint:lint-staged": "lint-staged",
"publish": " npm publish",
"publish:build": "npm run build && npm publish",
"publish:rimraf": "npm run publish:build && npm publish"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/meguoe/ip-toolkit"
},
"homepage": "https://github.com/meguoe/ip-toolkit",
"keywords": [
"ip",
"ipv4",
"ipv6",
"cidr",
"subnet",
"netmask",
"ip-cidr",
"ip-addr",
"ip-range",
"ip-tools",
"ip-address",
"ip-library",
"ip-utility",
"ip-network"
],
"author": "meguoe@icloud.com",
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@jest/globals": "^29.6.1",
"@types/jest": "^29.5.3",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"tsup": "^7.2.0"
}
}