-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "@voximplant/kit-functions-sdk",
"version": "0.2.17",
"description": "Voximplant Kit cloud functions client",
"main": "dist/index.js",
"typescript": {
"definition": "dist/dts/index.d.ts"
},
"typings": "dist/dts/index.d.ts",
"scripts": {
"test:silent": "jest --silent",
"test": "jest",
"test:cover": "jest --coverage=true --silent && make-coverage-badge",
"build": "node clear.js && tsc && node bundle.js && typedoc && node doc/converter/converter.js",
"doc": "typedoc && node doc/converter/converter.js",
"release": "standard-version"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/voximplant/kit-functions-sdk.git"
},
"homepage": "https://voximplant.com/kit",
"keywords": [
"serverless",
"sdk",
"voximplant_kit"
],
"author": "Zingaya Inc. <info@voximplant.com> (http://voximplant.com)",
"license": "ISC",
"dependencies": {
"axios": "0.21.2",
"dotenv": "10.0.0",
"qs": "6.9.7",
"querystring": "0.2.0"
},
"devDependencies": {
"colors": "1.4.0",
"dts-bundle": "0.7.3",
"jest": "26.6.3",
"make-coverage-badge": "1.2.0",
"standard-version": "9.3.2",
"typedoc": "0.19.2",
"typescript": "3.9.5"
},
"jest": {
"coverageReporters": [
"json-summary",
"lcov"
],
"testRegex": ".test.js$"
}
}