-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.64 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
{
"name": "nbbcjs",
"version": "1.1.2",
"description": "NodeJS Implementation of the PHP NBBC BBCode Parser, a fast extensible BBCode parser",
"main": "build/src/nbbc.js",
"types": "build/src/nbbc.d.ts",
"scripts": {
"test": "jest",
"coverage": "jest --collectCoverage",
"prepublish": "pnpm run build",
"build": "npx tsc && npx webpack",
"gendocs": "npx typedoc ./src/nbbc.ts --plugin typedoc-plugin-missing-exports --internalModule Types"
},
"keywords": [
"bbcode",
"nbbc",
"extensible"
],
"engines": {
"node": ">=16"
},
"author": "Jaynator495",
"contributors": [
{
"name": "Jaynator495",
"email": "contact@questioncove.com"
},
{
"name": "Todd Burry",
"email": "todd@vanillaforums.com"
},
{
"name": "TheYak"
},
{
"name": "Sean Werkema"
}
],
"repository": {
"type": "git",
"url": "https://github.com/QuestionCove/nbbcjs"
},
"homepage": "https://questioncove.github.io/nbbcjs/",
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"babel-loader": "^9.1.3",
"eslint": "^8.47.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typedoc-plugin-missing-exports": "^2.0.1",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"license": "BSD-2-Clause",
"directories": {
"test": "tests"
}
}