-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "ringcentral-chatbot-core",
"version": "1.6.1",
"license": "MIT",
"scripts": {
"test": "jest -c tests/jest.config.ts",
"build": "rm -rf dist && yarn tsc",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@rc-ex/core": "^1.3.7",
"@types/express": "^4.17.13",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.3",
"axios": "^1.6.0",
"commander": "^9.3.0",
"dynamo-sequelize": "^3.0.0",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"form-data": "^4.0.0",
"wait-for-async": "^0.6.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.40",
"@types/ramda": "^0.28.14",
"gts": "^3.1.0",
"jest": "^28.1.0",
"ramda": "^0.28.0",
"sqlite3": "^5.0.8",
"supertest": "^6.3.4",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"yarn-upgrade-all": "^0.7.1"
},
"files": [
"dist",
"src"
],
"description": "## Status: work in progress",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ringcentral/ringcentral-chatbot-core.git"
},
"keywords": [
"RingCentral",
"chatbot"
],
"author": "Drake Zhao <[email protected]>",
"bugs": {
"url": "https://github.com/ringcentral/ringcentral-chatbot-core/issues"
},
"homepage": "https://github.com/ringcentral/ringcentral-chatbot-core#readme"
}