-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.38 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
{
"name": "u-wave-parse-chat-markup",
"version": "2.5.0",
"description": "Abstract chat parser for üWave client applications.",
"license": "MIT",
"author": "Renée Kooi <renee@kooi.me>",
"main": "./dist/u-wave-parse-chat-markup.js",
"module": "./dist/u-wave-parse-chat-markup.mjs",
"exports": {
".": {
"import": "./dist/u-wave-parse-chat-markup.mjs",
"default": "./dist/u-wave-parse-chat-markup.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/u-wave/parse-chat-markup.git"
},
"keywords": [
"u-wave"
],
"bugs": "https://github.com/u-wave/parse-chat-markup/issues",
"homepage": "https://github.com/u-wave/parse-chat-markup#readme",
"scripts": {
"prepare": "rollup -c",
"lint": "eslint .",
"test": "npm run tests-only && npm run lint",
"tests-only": "vitest run --coverage.enabled --coverage.reporter=lcov --coverage.reporter=text --coverage.100"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"@vitest/coverage-v8": "^2.0.1",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.0",
"rollup": "^4.6.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.0.2",
"vitest": "^2.0.1"
}
}