-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.32 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": "unofficial-chatwork-parser",
"version": "0.2.0",
"description": "unified plugin to parse Chatwork message",
"repository": "https://github.com/nnabeyang/unofficial-chatwork-parser",
"bugs": "https://github.com/nnabeyang/unofficial-chatwork-parser/issues",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"start": "node -r esbuild-register src/sample.ts",
"build": "tsc"
},
"keywords": [
"unified",
"unified-plugin",
"parser"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/linkify-it": "^3.0.2",
"@types/mdast": "^3.0.10",
"@types/unist": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"esbuild": "^0.13.13",
"esbuild-register": "^3.1.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"unified": "^10.1.0"
},
"dependencies": {
"linkify-it": "^3.0.3"
}
}