-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
39 lines (39 loc) · 1022 Bytes
/
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
{
"name": "@reacherhq/api",
"version": "0.3.10",
"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",
"generate:typings": "swagger-to-ts openapi.json -o src/types.ts --prettier-config ./prettierrc.js",
"lint": "tsc --noEmit && eslint . --ext .ts"
},
"dependencies": {
"@types/async": "^3.2.16",
"@types/debug": "^4.1.7",
"async": "^3.2.4",
"axios": "^1.2.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.11.18",
"csv-parse": "^5.3.3",
"json2csv": "^5.0.7",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}