This repository has been archived by the owner on Aug 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2 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": "@gladiaio/sdk",
"version": "0.10.71",
"repository": {
"type": "git",
"url": "https://github.com/gladiaio/gladia-sdk-js.git"
},
"author": "gladia",
"license": "MIT",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"scripts": {
"build:clean": "rimraf ./lib",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"build:es5": "tsc -p ./tsconfig.es5.json",
"bundle": "webpack --mode production",
"build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:es5 && npm run bundle",
"postbuild": "npm run lint && ln -s ../../lib ./examples/vanilla-js/lib",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"download-openapi": "ts-node scripts/download-openapi.ts",
"generate-metadata": "ts-node scripts/generate-metadata.ts",
"generate-sdk": "ts-node scripts/generate-sdk.ts"
},
"dependencies": {
"core-js": "^3.9.1",
"formdata-polyfill": "^4.0.10"
},
"devDependencies": {
"@types/custom-functions-runtime": "^1.6.4",
"@types/find-process": "1.2.0",
"@types/jest": "^28.1.6",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"acorn": "^8.5.0",
"custom-functions-metadata-plugin": "^1.2.9",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.1.2",
"mutative": "^0.2.2",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"request": "^2.81.0",
"rimraf": "^3.0.2",
"source-map-loader": "^4.0.0",
"ts-jest": "^28.0.7",
"ts-loader": "^9.2.5",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.8.0"
},
"browserslist": [
"ie 11"
]
}