-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
{
"name": "enrich-email",
"version": "0.0.15",
"main": "dist/node/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "Tait Brown <taitbrown@gmail.com>",
"private": false,
"scripts": {
"test": "jest --coverage",
"test:ci": "jest",
"test:watch": "jest --watch",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"copy:types": "copyfiles -f src/index.d.ts dist",
"build": "npm run build:iife && npm run build:esm && npm run build:node && npm run copy:types",
"build:iife": "esbuild src/index.js --minify --bundle --target=chrome58,firefox57,safari11,edge18 --outfile=dist/web/iife.js",
"build:esm": "esbuild src/index.js --minify --bundle --target=chrome58,firefox57,safari11,edge18 --format=esm --outfile=dist/web/esm.js",
"build:node": "esbuild src/*.js --platform=node --target=node10.4 --outdir=dist/node"
},
"dependencies": {
"@octokit/rest": "^18.10.0",
"email-to-name": "^2.0.4",
"freemail-webpack": "^1.0.0",
"gravatar.js": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taitems/user-email-enrichment.git"
},
"bugs": {
"url": "https://github.com/taitems/user-email-enrichment/issues"
},
"homepage": "https://github.com/taitems/user-email-enrichment#readme",
"keywords": [
"enrich contact",
"identity resolution",
"email lookup",
"profile hydration",
"reverse lookup"
],
"devDependencies": {
"copyfiles": "^2.4.1",
"esbuild": "^0.13.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.4",
"prettier": "^2.4.1",
"url": "^0.11.0"
},
"resolutions": {
"tldjs": "^2.2.0"
},
"browser": {
"url": "url"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"arrowParens": "avoid",
"trailingComma": "none",
"printWidth": 120
}
}