-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"name": "dad-tool",
"version": "6.0.0",
"description": "Dummy Address Data (DAD) - Retrieve real addresses from all around the world.",
"main": "index.js",
"type": "module",
"exports": {
".": "./index.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"coverage": "c8 --reporter=text --reporter=lcov npm test",
"lint": "eslint --config node_modules/justintime50-styles/src/javascript/eslint.config.js --ignore-pattern 'coverage' .",
"fix": "eslint --config node_modules/justintime50-styles/src/javascript/eslint.config.js --ignore-pattern 'coverage' --fix .",
"format": "prettier --config node_modules/justintime50-styles/src/javascript/.prettierrc.yaml --write .",
"format-check": "prettier --config node_modules/justintime50-styles/src/javascript/.prettierrc.yaml --check .",
"test": "_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Justintime50/dad-node.git"
},
"keywords": [
"dummy",
"address",
"data",
"dad"
],
"author": "Justintime50",
"license": "MIT",
"bin": {
"dad": "cli.js"
},
"devDependencies": {
"c8": "^10.1.3",
"chai": "^5.2",
"eslint": "^9.32",
"eslint-plugin-json": "^4.0",
"justintime50-styles": "0.10.0",
"mocha": "^11.7",
"prettier": "^3.6",
"sinon": "^21.0"
}
}