-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.22 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.22 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
{
"name": "html-text-editor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-app": "terser ./docs/js/src/TextApp.js -c -m -o ./docs/js/app.min.js --config-file terser.config.json",
"build-beta": "terser ./docs/js/src/Beta.js -c -m -o ./docs/js/beta.min.js --config-file terser.config.json",
"build-vk": "terser ./docs/js/src/vkbeautify.js -c -m -o ./docs/js/vkbeautify.min.js --config-file terser.config.json",
"build-vk2": "terser ./node_modules/vkbeautify/index.js -c -m -o ./docs/js/vkbeautify2.min.js --config-file terser.config.json",
"build-worker": "terser ./docs/js/src/serviceWorker.js -c -m -o ./docs/serviceWorker.min.js --config-file terser.config.json",
"build-legacy": "terser ./docs/js/src/legacy.js -c -m -o ./docs/js/legacy.min.js --config-file terser.config.json",
"build": "npm run build-app && npm run build-vk && npm run build-worker",
"build-all": "npm run build-app && npm run build-vk && npm run build-worker && npm run build-legacy && npm run build-beta"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"terser": "^5.31.6",
"vkbeautify": "0.99.3"
}
}