-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.19 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@relaypro/sdk",
"version": "2.4.0",
"description": "Workflow SDK Relay on Node.js",
"license": "MIT",
"repository": "github:relaypro/relay-js",
"keywords": [
"Relay Pro",
"Relay",
"Voice"
],
"homepage": "https://developer.relaypro.com",
"bugs": "https://github.com/relaypro/relay-js/issues",
"main": "dist/index.js",
"engines": {
"node": ">=14.15.0"
},
"scripts": {
"test": "nyc mocha --exit test/*",
"release": "np",
"build": "del-cli dist && tsc",
"build:test": "npm run build && npm run test",
"build:check": "tsc --noEmit",
"prepare": "npm run build",
"docs": "rimraf docs && typedoc --plugin typedoc-plugin-markdown --out docs --entryPointStrategy expand ./src --excludePrivate && concat-md --toc --decrease-title-levels --dir-name-as-title docs > API.md",
"concat-doc": "mkdir -p docs && npx concat-md --toc --decrease-title-levels --dir-name-as-title docs > API.md",
"doc-sync": "node ./scripts/doc-sync.mjs"
},
"files": [
"dist"
],
"dependencies": {
"debug": "4.3.4",
"node-fetch": "2.6.7",
"tslib": "2.4.0",
"ws": "8.8.1"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "3.0.0",
"@types/chai": "4.3.3",
"@types/debug": "4.1.7",
"@types/mocha": "9.1.1",
"@types/node": "18.7.16",
"@types/node-fetch": "2.6.2",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"concat-md": "0.5.0",
"del-cli": "5.0.0",
"eslint": "8.23.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-mocha": "10.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.1",
"got": "12.4.1",
"mocha": "10.0.0",
"np": "7.6.2",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"typedoc": "0.23.14",
"typedoc-plugin-markdown": "3.13.6",
"typescript": "4.8.3"
},
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"sdk": {
"commitHash": "0204cdaa2c2c5c6c5a1f677cf4f0fb26aa556922"
}
}