-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.8 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.8 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ip-utility",
"version": "1.1.1",
"description": "Package that provides a basic set of function about your IP",
"main": "dist/index.js",
"types": "dist/**/*.d.ts",
"repository": "https://github.com/ArcaneDiver/ip-utility.git",
"author": {
"name": "Michele Della Mea",
"email": "michele.dellamea@bearzi.org",
"url": "https://github.com/ArcaneDiver"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@ArcaneDiver"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "npx tsc -p tsconfig.json",
"dev": "npx nodemon src/index.ts",
"cli:dev": "npx nodemon src/cli.ts",
"start": "npx ts-node dist/index.js",
"test": "npx mocha",
"coverage": "npx nyc mocha",
"lint": "npx tslint --config tslint.json --project tsconfig.json"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"produceSourceMap": true,
"sourceMap": true,
"instrument": true,
"all": true,
"require": [
"source-map-support/register",
"ts-node/register"
],
"reporter": [
"text",
"lcov"
],
"include": [
"**/*.ts"
]
},
"bin": "./dist/cli.js",
"license": "MIT",
"dependencies": {
"@types/default-gateway": "^3.0.0",
"axios": "^0.21.1",
"chalk": "^3.0.0",
"default-gateway": "^5.0.5",
"meow": "^5.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.2.5",
"@types/meow": "^5.0.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.12",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"npx": "^10.2.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.16",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"keywords": [
"ip",
"ipv6",
"ipv4",
"address",
"internal",
"public",
"private",
"public-ip",
"private-ip",
"local",
"machine",
"system",
"net",
"gateway"
]
}