-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "@ector/core",
"version": "1.1.0",
"description": "Functions to generate response from previous sentences of the user",
"keywords": [
"chatterbot",
"bot",
"chat",
"learning"
],
"author": "François Parmentier <[email protected]>",
"homepage": "https://github.com/parmentf/ector-monorepo#readme",
"license": "MIT",
"main": "dist/core.js",
"directories": {
"lib": "dist",
"test": "__tests__"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parmentf/ector-monorepo.git"
},
"scripts": {
"build": "babel --root-mode upward src --out-dir dist",
"doc": "documentation readme src/** -f md --section=Functions",
"prepublish": "npm run build",
"test": "echo \"Error: run tests from root\" && exit 1"
},
"bugs": {
"url": "https://github.com/parmentf/ector-monorepo/issues"
},
"dependencies": {
"@ector/concept-network": "1.1.0",
"@ector/state": "1.0.3",
"random-weighted-choice": "0.1.3",
"sentence-tokenizer": "1.0.1"
}
}