-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
74 lines (74 loc) · 2.32 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
73
74
{
"name": "minify-tool",
"version": "1.0.0",
"description": "A web tool for the DigitalOcean Community to quickly minify JavaScript files.",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "20.9.0"
},
"scripts": {
"build": "npm run build:clean && npm run build:template && npm run build:static && npm run build:tool",
"build:clean": "do-vue clean",
"build:template": "do-vue template",
"build:static": "copyfiles --up 2 ./src/static/{*,**/*} dist",
"build:tool": "do-vue tool src/minify-tool dist",
"dev": "npm run dev:prep && do-vue dev ./src/minify-tool dev 8000",
"deploy:spaces:comment": "do-vue comment minify-tool",
"dev:prep": "npm run build:template && npm run dev:static",
"dev:static": "copyfiles --up 2 ./src/static/{*,**/*} dev",
"test": "npm run test:eslint && npm run test:scss",
"test:fix": "npm run test:eslint:fix",
"test:eslint": "eslint 'src/**/*.{js,vue}'",
"test:eslint:fix": "npm run test:eslint -- --fix",
"test:scss": "stylelint ./src/**/*.scss --config node_modules/do-bulma/.stylelintrc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/do-community/minify-tool.git"
},
"keywords": [
"minfiy",
"javascript",
"terser"
],
"author": "DigitalOcean",
"bugs": {
"url": "https://github.com/do-community/minify-tool/issues"
},
"homepage": "https://github.com/do-community/minify-tool#readme",
"dependencies": {
"clone": "^2.1.2",
"do-bulma": "github:do-community/do-bulma",
"do-vue": "github:do-community/do-vue",
"pretty-bytes": "^6.1.1",
"pretty-checkbox-vue": "^1.1.9",
"prismjs": "^1.29.0",
"stringify-object": "^5.0.0",
"terser": "^5.27.0",
"utf8-byte-length": "^1.0.4",
"vue": "^3.4.15",
"vue-prism-editor": "^2.0.0-alpha.2",
"vue-select": "^4.0.0-beta.6",
"vue-tippy": "^6.4.1"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.1",
"posthtml": "^0.16.6",
"posthtml-extend": "^0.6.5",
"sass": "^1.70.0",
"stylelint": "^16.2.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"vue-template-compiler": "^2.7.16"
},
"overrides": {
"do-vue": {
"pretty-checkbox-vue": {
"vue": "^3.0.0"
}
}
}
}