-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "cloudflare-dyndns",
"version": "1.0.0",
"description": "CloudFlare dynamic DNS updater",
"main": "dist/index.js",
"devDependencies": {
"@types/moment": "^2.13.0",
"@types/node": "^14.14.10",
"@types/npmlog": "^4.1.0",
"@types/request-promise": "^4.1.41",
"nodemon": "^2.0.6",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
},
"dependencies": {
"cloudflare": "^2.7.0",
"moment": "^2.22.2",
"npmlog": "^4.1.2",
"request": "^2.87.0",
"request-promise": "^4.2.2"
},
"scripts": {
"start": "nodemon --watch src --exec ts-node src/index.ts",
"test": "nodemon --watch src --exec ts-node src/test.ts",
"build": "tsc",
"lint": "tslint -c tslint.json -p tsconfig.json",
"serve": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aequabit/cloudflare-dyndns.git"
},
"author": "aequabit",
"license": "ISC",
"bugs": {
"url": "https://github.com/aequabit/cloudflare-dyndns/issues"
},
"homepage": "https://github.com/aequabit/cloudflare-dyndns#readme"
}