-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.66 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
{
"name": "@nictool/validate",
"version": "0.8.10",
"description": "NicTool Object Validation",
"type": "module",
"files": [
"lib",
"index.js",
"CHANGELOG.md"
],
"main": "index.js",
"exports": {
".": "./index.js",
"./package.json": "./package.json",
"./lib/*": "./lib/*"
},
"directories": {
"test": "test"
},
"scripts": {
"format:check": "npm run prettier; npm run lint",
"format": "npm run prettier -- --write && npm run lint:fix",
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix .",
"prettier": "npx prettier --ignore-path .gitignore --check .",
"prettier:fix": "npx prettier --ignore-path .gitignore --write .",
"test": "node --test",
"test:only": "node --test --test-only",
"versions": "npx npm-dep-mgr check",
"versions:fix": "npx npm-dep-mgr update",
"watch": "node --test --watch",
"test:coverage": "npx c8 --reporter=text --reporter=text-summary npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NicTool/validate.git"
},
"keywords": [
"nictool",
"dns",
"validate",
"validation"
],
"author": "Matt Simerson <matt@tnpi.net>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/NicTool/validate/issues"
},
"homepage": "https://github.com/NicTool/validate#readme",
"devDependencies": {
"eslint": "^10.2.0",
"@eslint/js": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.5.0"
},
"dependencies": {
"joi": "^18.1.2",
"joi-password": "^4.3.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100
}
}