Spaces:
Paused
Paused
File size: 1,251 Bytes
8c741f6 | 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 | {
"name": "@hapi/address",
"description": "Email address and domain validation",
"version": "5.1.1",
"repository": "git://github.com/hapijs/address",
"main": "./dist/index.js",
"module": "./esm/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"src",
"esm"
],
"keywords": [
"email",
"domain",
"address",
"validation"
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@hapi/hoek": "^11.0.2"
},
"devDependencies": {
"@hapi/code": "^9.0.3",
"@hapi/lab": "^25.1.2",
"@types/node": "^14.18.36",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"typescript": "4.9.x"
},
"scripts": {
"test": "lab -t 100 -L",
"test-cov-html": "lab -t 100 -L -r html -o coverage.html",
"dist": "rm -rf dist/* && rm -rf esm/* && tsc --module commonjs --outdir dist && tsc --module es6 --outdir esm",
"format": "prettier --write '**/*.ts'"
},
"license": "BSD-3-Clause"
}
|