generated from PythonCoderAS/typescript-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "bbcode-ast",
"version": "2.1.0",
"description": "Generate an AST of a BBCode fragment.",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"test": "ts-mocha -p test.tsconfig.json .",
"build": "tsc -b && NODE_OPTIONS='--loader ts-node/esm' webpack && node scripts/fix-dist-output.js",
"lint": "prettier --check . && eslint . --ext .ts",
"lint-fix": "prettier --write . && eslint . --ext .ts --fix",
"docs": "typedoc --out docs src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PythonCoderAS/bbcode-ast.git"
},
"keywords": [],
"author": "PythonCoderAS",
"license": "MIT",
"bugs": {
"url": "https://github.com/PythonCoderAS/bbcode-ast/issues"
},
"homepage": "https://github.com/PythonCoderAS/bbcode-ast#readme",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/babel__core": "^7.20.5",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.8",
"@types/webpack": "^5.28.5",
"babel-loader": "^9.1.3",
"babel-plugin-module-extension-resolver": "^1.0.0",
"babel-register-esm": "^1.2.5",
"chai": "^5.0.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-pythoncoderas-combo": "^1.1.3",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typedoc": "^0.25.0",
"typescript": "^5.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.0"
}
}