forked from indutny/node-ip
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.17 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
{
"name": "neoip",
"version": "3.0.1",
"contributors": [
"Fedor Indutny <[email protected]>",
"Mike Hall <[email protected]>"
],
"homepage": "https://github.com/zaptic/neoip",
"repository": {
"type": "git",
"url": "git+https://github.com/zaptic/neoip.git"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"ip",
"address",
"range",
"cidr",
"subnet",
"mask",
"ipv4",
"ipv6"
],
"module": "dist/ip.mjs",
"types": "dist/ip.d.ts",
"main": "dist/ip.cjs",
"exports": {
".": {
"import": "./dist/ip.mjs",
"require": "./dist/ip.cjs",
"types": "./dist/ip.d.ts"
}
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.10",
"eslint": "^9.7.0",
"mocha": "^10.6.0",
"neostandard": "^0.11.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.18.1",
"ts-mocha": "^10.0.0",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
},
"scripts": {
"lint": "eslint src",
"pretest": "npm run lint",
"test": "ts-mocha -p tsconfig.test.json 'src/**/*.test.ts'",
"fix": "prettier --write src/*.ts",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"license": "MIT"
}