forked from indutny/node-ip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 797 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 797 Bytes
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
{
"name": "@eggjs/ip",
"version": "2.1.0",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 14.0.0"
},
"author": "Fedor Indutny <fedor@indutny.com>",
"homepage": "https://github.com/eggjs/node-ip",
"repository": {
"type": "git",
"url": "git://github.com/eggjs/node-ip.git"
},
"files": [
"lib",
"index.d.ts",
"README.md"
],
"main": "lib/ip",
"types": "index.d.ts",
"devDependencies": {
"@types/node": "^22.10.5",
"egg-bin": "^6.10.0",
"eslint": "^8.15.0",
"tsd": "^0.31.2"
},
"scripts": {
"lint": "eslint lib test",
"pretest": "npm run lint -- --fix && tsd",
"test": "egg-bin test --ts false",
"preci": "npm run lint && tsd",
"ci": "egg-bin cov --ts false"
},
"license": "MIT"
}