-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·88 lines (88 loc) · 2.36 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
80
81
82
83
84
85
86
87
88
{
"name": "oneai",
"main": "lib/src/index.js",
"version": "0.8.4",
"description": "Make your app understand language. Summarize conversations, categorize articles, and more.",
"repository": "github:oneai-nlp/oneai-node",
"scripts": {
"build": "tsc",
"test": "nyc mocha --reporter spec --require ts-node/register --timeout 50000 test/**/*.ts",
"report": "nyc -r text -r lcov report"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-fs": "^2.0.2",
"@types/mocha": "^10.0.1",
"@types/mocha-steps": "^1.3.0",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-fs": "^2.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"mocha-steps": "^1.3.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@types/node": "^18.15.11",
"axios": "^1.3.4",
"uuid": "^9.0.0"
},
"optionalDependencies": {
"subtitle": "^4.2.1"
},
"keywords": [
"nlp",
"language",
"natural language processing",
"oneai",
"one ai",
"ai",
"one",
"natural language understanding",
"natural language",
"text",
"text processing",
"text classification",
"text analysis",
"language ai",
"rest api",
"artificial intelligence",
"summarization",
"summary",
"sentiment",
"topic extraction",
"topics",
"transcription",
"speech to text",
"voice",
"audio",
"ml",
"machine learning",
"insights",
"analytics"
],
"license": "MIT",
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": [
"src/**/*"
],
"reporter": [
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
}
}