-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.56 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
{
"author": "Noticeable Team <[email protected]>",
"bugs": {
"url": "https://github.com/noticeable-app/kickmail/issues"
},
"dependencies": {
"cross-fetch": "^4.0.0"
},
"description": "Forbid disposable email addresses with ease.",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"files": [
"dist/**"
],
"homepage": "https://github.com/noticeable-app/kickmail#readme",
"keywords": [
"disposable",
"disposable emails",
"filter disposable",
"kickmail"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"name": "@noticeable-app/kickmail",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/noticeable-app/kickmail.git"
},
"scripts": {
"build:cjs": "./node_modules/.bin/tsc -m commonjs",
"build:mjs": "./node_modules/.bin/tsc -m es2015 -d --moduleResolution node --outDir dist/esm",
"build": "npm run clean && npm run lint && npm run build:mjs && npm run build:cjs",
"clean": "rm -rf dist/",
"lint": "./node_modules/.bin/eslint src/main/typescript/**/*",
"lint:fix": "./node_modules/.bin/eslint src/main/typescript/**/* --fix",
"prepare": "npm run clean && npm run build",
"test": "jest"
},
"types": "./dist/esm/index.d.ts",
"version": "1.1.0"
}