-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.8 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@dintero/email-chk",
"version": "0.0.0-development",
"description": "",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.js"
},
"./package.json": "./package.json"
},
"main": "lib/cjs/index.js",
"types": "lib/types/index.d.ts",
"author": "Thoralf Thelle <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=18.0"
},
"files": [
"lib"
],
"sideEffects": "false",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
]
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"eslint-config-dintero": "https://github.com/Dintero/eslint-config-dintero",
"jest": "^29.4.2",
"semantic-release": "^24.0.0",
"ts-jest": "^29.0.5",
"typescript": "5.8.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Dintero/email-chk"
},
"homepage": "https://github.com/Dintero/email-chk",
"bugs": {
"url": "https://github.com/Dintero/email-chk/issues"
},
"scripts": {
"test": "jest",
"clean": "rm -rf ./lib",
"check": "yarn run lint && yarn run test",
"build": "yarn run clean && yarn run build:esm && yarn run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"lint": "eslint ./src",
"release": "semantic-release",
"prepublishOnly": "yarn run build"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {}
}