-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.25 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.25 KB
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
{
"name": "bulletin-board-code",
"version": "1.0.2",
"description": "Bidirectional convert between BBCode and HTML.",
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"repository": {
"type": "git",
"url": "https://github.com/tada5hi/bulletin-board-code.git"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "rimraf dist && npm run build:types && npm run build:js",
"build:watch": "npm run build -- --watch",
"test": "cross-env NODE_ENV=test jest --config ./test/jest.config.js",
"test:coverage": "cross-env NODE_ENV=test jest --config ./test/jest.config.js --coverage",
"lint": "eslint --ext .js,.vue,.ts ./src ./test",
"lint:fix": "npm run lint -- --fix",
"prepare": "npx husky install",
"prepublishOnly": "npm run build"
},
"keywords": [
"bulletin-board-code",
"bbcode",
"html",
"parser",
"bbcode-to-html",
"html-to-bbcode",
"tokenizer"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@swc/core": "^1.11.15",
"@swc/jest": "^0.2.37",
"@tada5hi/commitlint-config": "^1.2.4",
"@tada5hi/eslint-config-typescript": "^1.2.15",
"@tada5hi/semantic-release": "^0.3.2",
"@tada5hi/tsconfig": "^0.6.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.15",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"rollup": "^4.38.0",
"semantic-release": "^24.2.3",
"typescript": "^5.8.2"
},
"dependencies": {
"node-html-parser": "^7.0.1"
}
}