This repository was archived by the owner on Jan 29, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "cloudflare-ddns",
"version": "3.3.0",
"description": "",
"type": "module",
"private": true,
"scripts": {
"build": "tsc --build packages/tsconfig.json",
"start:pretty": "node index.mjs | pino-pretty --translateTime yyyy-mm-dd'T'HH:MM:sso",
"start:json": "node index.mjs",
"test": "mocha",
"lint": "eslint packages/**/*.ts",
"clear": "rimraf packages/*/lib packages/*/tsconfig.tsbuildinfo"
},
"repository": {
"type": "git",
"url": "https://github.com/joshuaavalon/docker-cloudflare.git"
},
"keywords": [
"ddns",
"cloudflare"
],
"author": "Joshua Avalon",
"license": "MIT",
"workspaces": [
"packages/*"
],
"bugs": {
"url": "https://github.com/joshuaavalon/docker-cloudflare/issues"
},
"homepage": "https://github.com/joshuaavalon/docker-cloudflare#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"chai": "^4.3.7",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"typescript": "^5.1.6"
},
"dependencies": {
"dotenv": "16.0.3",
"pino-pretty": "10.0.0"
}
}