-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 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
{
"name": "@nictool/api",
"version": "3.0.0-alpha.6",
"description": "NicTool API",
"main": "index.js",
"type": "module",
"scripts": {
"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",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update",
"watch": "./test.sh watch"
},
"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": {
"@babel/eslint-parser": "^7.27.0",
"@babel/plugin-syntax-import-attributes": "^7.26.0",
"eslint": "^9.24.0"
},
"dependencies": {
"@hapi/cookie": "^12.0.1",
"@hapi/hapi": "^21.4.0",
"@hapi/hoek": "^11.0.7",
"@hapi/inert": "^7.1.0",
"@hapi/jwt": "^3.2.0",
"@hapi/vision": "^7.0.3",
"@nictool/dns-resource-record": "^1.2.2",
"@nictool/validate": "^0.8.2",
"hapi-swagger": "^17.3.2",
"mysql2": "^3.14.0",
"qs": "^6.14.0",
"yaml": "^2.7.1"
}
}