-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.53 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",
"version": "0.0.2",
"description": "NicTool, the DNS manager",
"main": "index.js",
"type": "module",
"bin": {
"nictool-server": "bin/start.js"
},
"scripts": {
"build": "",
"clean": "rm -rf node_modules package-lock.json",
"format:check": "npm run prettier; npm run lint",
"format": "npm run prettier -- --write && npm run lint:fix",
"lint": "npx eslint **/*.js",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier --ignore-path .gitignore --check .",
"prettier:fix": "npx prettier --ignore-path .gitignore --write .",
"test": "node --test test/*.js",
"test:coverage": "npx c8 --reporter=text --reporter=text-summary npm test",
"versions": "npx npm-dep-mgr check",
"versions:fix": "npx npm-dep-mgr update",
"watch": "node --test --watch test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NicTool/server.git"
},
"keywords": [
"nictool",
"config",
"server",
"dns",
"manager"
],
"author": "Matt Simerson <matt@tnpi.net>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/NicTool/server/issues"
},
"homepage": "https://github.com/NicTool/server#readme",
"dependencies": {
"joi": "^18.1.2",
"@nictool/api": "^3.0.0-alpha.11",
"@nictool/dns-nameserver": "^0.7.4",
"@nictool/dns-resource-record": "^1.6.0",
"@nictool/dns-zone": "^1.1.8",
"smol-toml": "^1.6.1"
},
"prettier": {
"printWidth": 90,
"singleQuote": true,
"semi": false
}
}