forked from DasRed/js-bbcode-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "js-bbcode-parser",
"version": "4.0.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": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/DasRed/js-bbcode-parser/issues"
},
"homepage": "https://github.com/DasRed/js-bbcode-parser#readme",
"scripts": {
"build": "rollup -c ./rollup.config.js",
"test": "mocha",
"prepublishOnly": "npm run test && npm run build"
},
"files": [
"/dist/*",
"/src/*"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@rollup/plugin-node-resolve": "^13.0.4",
"core-js": "^3.6.5",
"mocha": "^9.1.0",
"rollup": "^2.7.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-terser": "^7.0.2"
},
"mocha": {
"recursive": true,
"extension": [
"test.js"
]
}
}