forked from reacherhq/reacher-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "@reacherhq/api",
"version": "0.3.2",
"author": "Amaury <[email protected]>",
"description": "Check if an email address exists without sending any email.",
"files": [
"/lib"
],
"license": "Apache-2.0",
"main": "lib/",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/reacherhq/reacher-js",
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.build.json",
"docs": "typedoc",
"generate:typings": "swagger-to-ts backend/openapi.json -o src/types.ts --prettier-config ./prettierrc.js",
"lint": "tsc --noEmit && eslint . --ext .ts"
},
"dependencies": {
"@types/async": "^3.2.12",
"@types/debug": "^4.1.7",
"async": "^3.2.3",
"axios": "^0.27.2",
"debug": "^4.3.4"
},
"devDependencies": {
"@amaurym/config": "^1.3.6",
"@manifoldco/swagger-to-ts": "^2.1.0",
"@types/json2csv": "^5.0.3",
"@types/node": "^18.6.0",
"csv-parse": "^5.0.4",
"json2csv": "^5.0.7",
"standard-version": "^9.3.2",
"ts-node": "^10.7.0",
"typedoc": "^0.23.9",
"typedoc-plugin-markdown": "^3.11.14",
"typedoc-plugin-no-inherit": "^1.3.1",
"typescript": "^4.6.3"
}
}