-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.24 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
{
"name": "ya-bbcode",
"version": "4.0.0",
"description": "Yet another BBCode Parser",
"keywords": [
"bbc",
"bbcode",
"html",
"parser"
],
"homepage": "https://github.com/nodecraft/ya-bbcode",
"bugs": {
"url": "https://github.com/nodecraft/ya-bbcode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nodecraft/ya-bbcode"
},
"license": "MIT",
"author": "Nodecraft Inc.",
"main": "ya-bbcode.js",
"types": "ya-bbcode.d.ts",
"files": [
"ya-bbcode.js",
"ya-bbcode.d.ts"
],
"scripts": {
"coverage": "npm run test -- --coverage",
"lint": "eslint . --fix",
"prepare": "husky",
"test": "vitest run"
},
"lint-staged": {
"*.js": "eslint --cache"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@nodecraft/eslint-config": "44.1.0",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"@vitest/coverage-v8": "2.1.5",
"coveralls": "3.1.1",
"eslint": "8.57.1",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "56.0.1",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"typescript": "5.7.2",
"vitest": "2.1.5"
},
"engines": {
"node": ">=18",
"npm": ">=8"
}
}