forked from private-yusuke/botot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "botot2",
"version": "2.2.2",
"description": "A chatbot for Misskey with Markov chain",
"main": "index.js",
"scripts": {
"start": "node ./built",
"build": "tsc && node meta.js",
"lint": "eslint .",
"lint:prettier": "prettier --check '**/*.{js,ts}'",
"fix": "npm run fix:eslint; npm run fix:prettier",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier --write '**/*.{js,ts}'",
"test": "tsc"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^10.17.40",
"@types/node-fetch": "^2.5.4",
"@types/ws": "^6.0.4",
"@types/xml2js": "^0.4.5",
"eslint": "^5.10.0",
"eslint-config-prettier": "^6.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.19.1"
},
"dependencies": {
"asciimath-to-latex": "^0.3.2",
"graphviz": "0.0.9",
"markov-ja": "^1.0.10",
"mathjax-node": "^2.1.1",
"moment": "^2.29.1",
"node-cabocha": "0.0.5",
"node-fetch": "^2.6.1",
"reconnecting-websocket": "^4.2.0",
"request-promise-native": "^1.0.8",
"svg2png": "^4.1.1",
"timeout-as-promise": "^1.0.0",
"typescript": "^3.7.3",
"ws": "^6.1.2",
"xml2js": "^0.4.22"
}
}