-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.37 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
77
78
79
{
"name": "deepdialog",
"version": "0.3.3",
"description": "Node client for interacting with DeepDialog service",
"engines": {
"npm": "5.1.0",
"node": "12.18.2"
},
"main": "./lib",
"repository": "https://github.com/aneilbaboo/deepdialog-node-client.git",
"keywords": [
"chatbots",
"conversationalUI",
"javascript",
"AI"
],
"license": "MIT",
"options": {
"mocha": "--require scripts/mocha_runner tests/**/*.test.js"
},
"scripts": {
"prepublishOnly": ". ./scripts/prepublishOnly.sh",
"coverage": "istanbul cover _mocha -- $npm_package_options_mocha",
"build": "./node_modules/.bin/babel src --out-dir lib",
"postinstall": ". ./scripts/postinstall.sh",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"console": "node --require babel-register --require babel-polyfill -e 'let deepdialog=require(`./src`); for (let symbol in deepdialog) { this.global[symbol] = deepdialog[symbol] };' -i",
"debugtest": "mocha --inspect-brk $npm_package_options_mocha"
},
"directories": {
"lib": ""
},
"devDependencies": {
"babel-eslint": "^10.1",
"babel-plugin-transform-runtime": "6.x.x",
"babel-preset-es2015": "6.x.x",
"caniuse-lite": "1.0.30000697",
"chai": "^4.1.0",
"chai-match-pattern": "1.0.0",
"dotenv": "^8.2.0",
"electron-to-chromium": "1.3.15",
"eslint": "^7.4.0",
"eslint-mocha": "0.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^7.0.1",
"mocha": "^8.0.1",
"sinon": "^9.0.2"
},
"dependencies": {
"@babel/cli": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-cli": "6.24.1",
"babel-preset-env": "1.6.0",
"babel-preset-stage-3": "6.24.1",
"babel-runtime": "6.x.x",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-promise-router": "^4.0.1",
"fast-levenshtein": "^2.0.6",
"jwt-simple": "^0.5.6",
"lodash": "^4.17.2",
"lokka": "1.7.0",
"lokka-transport-http": "1.6.1",
"micromustache": "5.2.0",
"morgan": "^1.10.0",
"request": "^2.88.2",
"request-promise": "4.1.1",
"winston": "2.3.1"
},
"resolutions": {
"minimist": "^1.2.5"
},
"author": "Aneil Mallavarapu <[email protected]>"
}