forked from okhiroyuki/node-red-contrib-nlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.04 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
{
"name": "node-red-contrib-nlp",
"version": "3.0.1",
"description": "Node-RED node for NLP.js",
"main": "index.js",
"scripts": {
"test": "npx grunt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okhiroyuki/node-red-contrib-nlp.git"
},
"keywords": [
"node-red",
"nlp"
],
"author": "hiroyuki okada",
"license": "MIT",
"dependencies": {
"@nlpjs/basic": "^4.21.3",
"@nlpjs/lang-ja": "^4.22.0",
"@nlpjs/qna-importer": "^4.21.1",
"tmp": "^0.2.1"
},
"node-red": {
"nodes": {
"nlp": "./nodes/nlp.js"
}
},
"devDependencies": {
"grunt": "^1.3.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-jsonlint": "^2.1.3",
"grunt-lint-inline": "^1.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-nr-locales-htmllint": "^1.1.0",
"grunt-simple-mocha": "^0.4.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^9.1.1",
"node-red": "^2.0.5",
"node-red-node-test-helper": "^0.2.7",
"should": "^13.2.3"
},
"engines": {
"node": ">=12.0.0"
}
}