forked from hapijs/tlds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.16 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
{
"name": "@hapi/tlds",
"description": "TLDS list for domain validation",
"version": "1.0.1",
"repository": "git://github.com/hapijs/tlds",
"main": "./dist/index.js",
"module": "./esm/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"esm",
"src"
],
"keywords": [
"domain",
"tlds"
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {},
"devDependencies": {
"@hapi/code": "^8.0.0",
"@hapi/lab": "^24.5.0",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"typescript": "4.6.x"
},
"scripts": {
"test": "lab -t 100 -L",
"test-cov-html": "lab -t 100 -L -r html -o coverage.html",
"dist": "rm -rf dist esm && tsc --module commonjs --outdir dist && tsc --module es6 --outdir esm",
"prepublishOnly": "npm run dist",
"format": "prettier --write '**/*.ts'"
},
"license": "BSD-3-Clause"
}