-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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": "cloudflare-ddns-sync",
"version": "3.0.2",
"description": "A simple module to update DNS records on Cloudflare whenever you want",
"main": "dist/index.js",
"author": "Steffen Knaup <SteffenKnaup@hotmail.de>",
"license": "ISC",
"type": "module",
"keywords": [
"cloudflare",
"cddnss",
"ddns",
"dns",
"dyndns",
"sync"
],
"homepage": "https://cddnss.knaup.pw/",
"repository": {
"type": "git",
"url": "git://github.com:Steffen982/cloudflare-ddns-sync.git"
},
"scripts": {
"build": "tsc",
"lint": "prettier -c ./src",
"lint:fix": "prettier -w ./src",
"test": "c8 mocha dist/tests/*.js --timeout 15000 --exit",
"test:coverage": "npm run test:coverage-check && npm run test:coverage-report",
"test:coverage-check": "c8 check-coverage --lines 70 --functions 70 --branches 70",
"test:coverage-report": "c8 report"
},
"dependencies": {
"cloudflare": "2.9.1",
"node-cron": "3.0.3",
"parse-domain": "8.0.2",
"public-ip": "6.0.2"
},
"devDependencies": {
"@types/chai": "4.3.14",
"@types/cloudflare": "^2.7.14",
"@types/minimist": "1.2.5",
"@types/mocha": "10.0.6",
"@types/node": "20.11.30",
"@types/node-cron": "3.0.11",
"c8": "9.1.0",
"chai": "5.1.0",
"minimist": "1.2.8",
"mocha": "10.3.0",
"prettier": "^3.2.5",
"typescript": "5.4.3"
}
}