-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 KB
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
{
"name": "tomba",
"homepage": "https://tomba.io",
"description": "Tomba.io is an Email Finder for B2B sales and email marketing",
"version": "1.0.9",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"keywords": [
"email",
"Email Finder",
"Email Verifier",
"B2B",
"email marketing"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc --watch",
"test": "jest --coverage",
"doc:html": "typedoc lib/ --exclude **/*.spec.ts --out docs",
"doc:json": "typedoc lib/ --exclude **/*.spec.ts --json docs/typedoc.json",
"deploy": "gh-pages -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomba-io/node.git"
},
"bugs": {
"url": "https://github.com/tomba-io/node/issues"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@types/jest": "^30.0.0",
"gh-pages": "^6.3.0",
"jest": "^30.1.3",
"ts-jest": "^29.4.2",
"typedoc": "^0.28.13",
"typescript": "^5.9.2"
},
"dependencies": {
"axios": "^1.12.2"
}
}