-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 1.84 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
68
69
70
71
72
{
"name": "js-bbcode-parser",
"version": "5.1.0",
"description": "Simple and efficient bbcode parser.",
"main": "src/simple.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/DasRed/js-bbcode-parser.git"
},
"author": "Marco Starker",
"license": "MIT",
"bugs": {
"url": "https://github.com/DasRed/js-bbcode-parser/issues"
},
"homepage": "https://github.com/DasRed/js-bbcode-parser#readme",
"scripts": {
"build": "node build/build.js",
"test": "mocha",
"semantic-release": "semantic-release"
},
"keywords": [
"bbcode",
"parser"
],
"files": [
"/dist/*",
"/src/*"
],
"devDependencies": {
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"esbuild": "^0.20.1",
"esbuild-plugin-clear": "^1.0.1",
"esbuild-plugin-time": "^1.0.0",
"mocha": "^10.3.0",
"semantic-release": "^23.0.2",
"semantic-release-cli": "^5.4.4"
},
"mocha": {
"recursive": true,
"extension": [
"test.js"
]
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json"
]
}
],
"@semantic-release/github"
]
}
}