-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.96 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.96 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
{
"name": "@nictool/api",
"version": "3.0.0-alpha.10",
"description": "NicTool API",
"main": "index.js",
"type": "module",
"files": [
"CHANGELOG.md",
"conf.d",
"html",
"lib",
"routes",
"sql",
"server.js"
],
"scripts": {
"clean": "rm -rf node_modules package-lock.json",
"format": "npm run lint:fix && npm run prettier:fix",
"lint": "npx eslint *.js **/*.js",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier *.js conf.d lib routes html --check",
"prettier:fix": "npx prettier *.js conf.d lib routes html --write",
"start": "NODE_ENV=production node ./server",
"develop": "NODE_ENV=development node --watch server.js ./server",
"test": "./test.sh",
"test:develop": "NODE_ENV=development ./test.sh",
"versions": "npx npm-dep-mgr check",
"versions:fix": "npx npm-dep-mgr update",
"watch": "./test.sh watch",
"test:coverage": "npx c8 --reporter=text --reporter=text-summary npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NicTool/api.git"
},
"keywords": [
"nictool",
"api",
"dns",
"management"
],
"author": "Matt Simerson <matt@tnpi.net>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/NicTool/api/issues"
},
"homepage": "https://github.com/NicTool/api#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0"
},
"dependencies": {
"@hapi/cookie": "^12.0.1",
"@hapi/hapi": "^21.4.7",
"@hapi/hoek": "^11.0.7",
"@hapi/inert": "^7.1.0",
"@hapi/jwt": "^3.2.3",
"@hapi/vision": "^7.0.3",
"@nictool/dns-resource-record": "^1.5.0",
"@nictool/validate": "^0.8.8",
"hapi-swagger": "^17.3.2",
"mysql2": "^3.20.0",
"qs": "^6.15.0",
"smol-toml": "^1.6.1"
},
"prettier": {
"printWidth": 110,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}