-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 KB
/
package.json
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
{
"name": "dad-tool",
"version": "5.0.0",
"description": "Dummy Address Data (DAD) - Retrieve real addresses from all around the world.",
"main": "index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
"lint": "npx 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": {
"chai": "^4.4",
"coveralls": "^3.1.1",
"eslint": "^9.0",
"eslint-plugin-json": "^4.0",
"justintime50-styles": "0.7.0",
"mocha": "^10.6",
"nyc": "^17.0",
"prettier": "^3.3",
"sinon": "^18.0"
}
}