-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.2 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": "ip-alchemy",
"description": "An IP address manipulation library",
"keywords": [
"ip",
"cidr",
"ipv4",
"ipv6"
],
"license": "MIT",
"version": "0.1.0-alpha2",
"author": {
"name": "Diogo Passos",
"url": "https://diogopassos.pt"
},
"homepage": "https://github.com/gngz/ip-alchemy",
"bugs": {
"url": "https://github.com/gngz/ip-alchemy/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gngz/ip-alchemy.git"
},
"main": "dist/index.js",
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@types/bun": "latest",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"prepare": "husky",
"format": "prettier --write ./src",
"lint": "eslint ./src",
"test": "jest --passWithNoTests",
"build": "tsc"
}
}