-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 986 Bytes
/
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
{
"version": "0.0.0",
"description": "website for the unminifier tool",
"private": true,
"dependencies": {
"ace-builds": "1.5.0",
"prettier": "2.6.2",
"unminify": "2.0.0"
},
"devDependencies": {
"esbuild": "0.14.39",
"http-server": "^14.1.0",
"terser": "5.13.1"
},
"scripts": {
"build:lib": "bash ./update.sh",
"test": "http-server -c-1",
"vendor": "rm -rf vendor && mv node_modules tmp_node_modules && mkdir vendor && npm install --ignore-scripts --omit=dev && mv node_modules/* vendor/ && rm -rf node_modules && mv tmp_node_modules node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shapesecurity/unminify-website.git"
},
"keywords": [
"Unminify",
"website"
],
"author": "Shape Security",
"license": "Apache-2",
"bugs": {
"url": "https://github.com/shapesecurity/unminify-website/issues"
},
"homepage": "https://github.com/shapesecurity/unminify-website#readme"
}