forked from RocketChat/fuselage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.1 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
{
"name": "@quickchat.vn/message-parser",
"description": "QuickSales.Vn parser for messages",
"version": "0.31.22",
"author": {
"name": "QuickSales.Vn",
"url": "https://quickchat.vn/"
},
"license": "MIT",
"homepage": "https://github.com/QuickSales/fuselage#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/QuickSales/fuselage.git",
"directory": "packages/message-parser"
},
"bugs": {
"url": "https://github.com/QuickSales/fuselage/issues"
},
"main": "messageParser.js",
"exports": {
".": {
"default": "./messageParser.js"
},
"./index": {
"default": "./messageParser.js"
}
},
"module": "dist/messageParser.mjs",
"unpkg": "dist/messageParser.umd.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/messageParser.js"
],
"directories": {
"test": "test"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "run-s .:build:clean .:build:bundle",
".:build:clean": "rimraf dist",
".:build:bundle": "webpack",
"test": "jest --runInBand --coverage",
"watch": "jest --watch",
"lint": "lint",
"lint-and-fix": "lint-and-fix",
"lint-staged": "lint-staged",
"docs": "typedoc",
"bump-next": "bump-next"
},
"devDependencies": {
"@babel/core": "~7.19.6",
"@babel/eslint-parser": "~7.19.1",
"@babel/preset-env": "~7.19.4",
"@quickchat.vn/eslint-config-alt": "workspace:~",
"@quickchat.vn/peggy-loader": "workspace:~",
"@quickchat.vn/prettier-config": "workspace:~",
"@types/jest": "~27.4.1",
"@types/node": "~15.14.9",
"@typescript-eslint/parser": "~5.11.0",
"babel-loader": "~8.2.5",
"bump": "workspace:~",
"eslint": "~8.26.0",
"jest": "~27.5.1",
"lint-all": "workspace:~",
"lint-staged": "~12.3.8",
"npm-run-all": "^4.1.5",
"peggy": "^2.0.1",
"prettier": "~2.7.1",
"prettier-plugin-pegjs": "~0.5.2",
"rimraf": "^3.0.2",
"ts-jest": "~27.1.5",
"ts-loader": "~9.2.9",
"typedoc": "~0.22.18",
"typescript": "~4.3.5",
"webpack": "~5.74.0",
"webpack-cli": "~4.10.0"
}
}