-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
73 lines (73 loc) · 2.14 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
70
71
72
73
{
"name": "peopledatalabs",
"version": "9.5.0",
"description": "JavaScript client with TypeScript support for the People Data Labs API",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.m.js",
"umd:main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "rm -rf dist && microbundle",
"dev": "microbundle watch -p 6008",
"test": "yarn run build && yarn run mocha",
"mocha": "mocha --recursive 'tests/**/*.js' --timeout 5000",
"pub": "yarn run build && yarn publish --provenanc --access public",
"lint": "eslint ./src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peopledatalabs/peopledatalabs-js.git"
},
"keywords": [
"peopledatalabs",
"People Data Labs",
"data enrichment",
"person enrichment",
"person search",
"company enrichment",
"company search",
"javascript",
"api",
"client",
"sdk"
],
"author": "People Data Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/peopledatalabs/peopledatalabs-js/issues"
},
"homepage": "https://docs.peopledatalabs.com/docs/javascript-sdk",
"devDependencies": {
"@stylistic/eslint-plugin": "^2.12.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"chai": "^5.1.2",
"dotenv": "^16.4.7",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"eslint-plugin-unused-imports": "^3.2.0",
"esm": "^3.2.25",
"microbundle": "^0.15.1",
"mocha": "^11.0.1",
"typescript": "^5.7.2"
},
"dependencies": {
"axios": "^1.7.9",
"copy-anything": "3.0.5"
}
}