forked from oracle/bots-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.07 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
{
"name": "@oracle/bots-node-sdk",
"version": "2.7.3",
"description": "Oracle Digital Assistant SDK for custom component development and webhook integrations",
"main": "index.js",
"browser": "index-browser.js",
"typings": "typings/index.d.ts",
"license": "UPL-1.0",
"author": "Oracle Corp.",
"contributors": [
"Matt Vander Vliet",
"Henrick Yau",
"Steven Davelaar"
],
"repository": {
"type": "git",
"url": "https://github.com/oracle/bots-node-sdk"
},
"keywords": [
"oracle",
"bots",
"node",
"express",
"sdk",
"custom components",
"webhook"
],
"engines": {
"node": ">=8.9.4",
"npm": ">=5.6.0"
},
"scripts": {
"build": "npm run lint && npm run types",
"docs": "shx rm -rf ./docs && npm run types && jsdoc -c jsdoc.json -d ./docs",
"ts-docs": "shx rm -rf ./ts/docs && cd ts && npx typedoc",
"postdocs": "node ./docshim.js",
"lint": "eslint . --ignore-pattern reports --ignore-pattern examples --ignore-pattern docs && tslint --project ./ts",
"test": "npm run types && nyc jasmine",
"ts-test": "shx rm -rf ./typings && cd ts && tsc --project tsconfig-test.json && cd .. && npx jasmine ./typings/**/*[sS]pec.js",
"types": "shx rm -rf ./typings && cd ts && tsc",
"prepack": "npm run build",
"cc": "node ./bin/cc.js init"
},
"bin": {
"bots-node-sdk": "bin/sdk.js"
},
"dependencies": {
"@hapi/joi": "^15.1.1",
"body-parser": "^1.20.2",
"encoding": "^0.1.13",
"leven": "^2.1.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/hapi__joi": "^17.1.9",
"@types/jasmine": "^4.3.2",
"@types/joi": "^14.3.4",
"docdash": "^2.0.1",
"eslint": "^8.11.0",
"eslint-plugin-jasmine": "^2.10.1",
"express": "^4.18.2",
"jasmine": "^2.8.0",
"jasmine-reporters": "^2.3.2",
"jasmine-spec-reporter": "^4.2.1",
"jsdoc": "^4.0.2",
"nyc": "^15.1.0",
"shx": "^0.3.3",
"supertest": "^3.4.2",
"tslint": "^5.20.1",
"typescript": "^4.1.3"
}
}