-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"type": "module",
"name": "@masx200/no-ip-ddns-ipv6",
"version": "3.0.0",
"description": "Noip.com Dynamic DNS update client built in Node.js ,support ipv6",
"main": "index.js",
"bin": {
"no-ip-ddns-ipv6": "bin/cli.js"
},
"scripts": {
"test": "standard",
"format": "prettier --write *.js *.md *.json **/*.js",
"start": "node bin/cli.js"
},
"keywords": [
"no-ip",
"client",
"duc",
"node",
"dns"
],
"license": "MIT",
"dependencies": {
"axios": "^1.1.3",
"ms": "^2.1.3",
"public-ip": "^6.0.1",
"yargs": "^17.5.0"
},
"devDependencies": {
"@types/yargs": "^17.0.13",
"@types/ip": "^1.1.0",
"@types/ms": "^0.7.31",
"prettier": "^2.2.1"
},
"directories": {
"lib": "lib"
},
"repository": "git+https://github.com/masx200/no-ip-ddns-ipv6.git",
"author": "masx200 <[email protected]>",
"bugs": {
"url": "https://github.com/masx200/no-ip-ddns-ipv6/issues"
},
"homepage": "https://github.com/masx200/no-ip-ddns-ipv6#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
}
}