forked from LivePersonInc/faas-client-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.5 KB
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
{
"name": "liveperson-functions-client",
"version": "1.0.10",
"description": "JavaScript client for LivePerson Functions.",
"author": {
"name": "LivePersonInc",
"email": "faas-lp@liveperson.com"
},
"license": "MIT",
"scripts": {
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"test": "jest --coverage ./test/unit",
"integration": "jest ./test/integration",
"example": "npm run compile && node example.js"
},
"keywords": [
"LivePerson",
"Functions",
"Invocations"
],
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build"
],
"engines": {
"node": ">=10.13.0",
"npm": ">=6.4.0"
},
"dependencies": {
"guid-typescript": "^1.0.9",
"jsonwebtoken": "^8.5.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"simple-oauth2": "^3.4.0",
"statman-stopwatch": "^2.11.1",
"verror": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^10.17.14",
"@types/request-promise": "^4.1.46",
"@types/simple-oauth2": "^2.5.4",
"@types/verror": "^1.10.4",
"crypto": "^1.0.1",
"expect-more-jest": "^5.2.0",
"gts": "^3.0.2",
"jest": "^26.6.3",
"oauth-1.0a": "^2.2.6",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}