-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "tinyify",
"description": "a browserify plugin that runs various optimizations, so you don't have to install them all manually.",
"version": "4.0.0",
"author": "Renée Kooi <renee@kooi.me>",
"bugs": {
"url": "https://github.com/browserify/tinyify/issues"
},
"dependencies": {
"@browserify/envify": "^6.0.0",
"@browserify/uglifyify": "^6.0.0",
"browser-pack-flat": "^3.0.9",
"bundle-collapser": "^1.3.0",
"common-shakeify": "^1.1.1",
"minify-stream": "^2.0.1",
"multisplice": "^1.0.0",
"terser": "3.16.1",
"through2": "^4.0.2",
"unassertify": "^3.0.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"from2-string": "^1.1.0",
"standard": "^17.0.0",
"tape": "^5.6.1"
},
"homepage": "https://github.com/browserify/tinyify",
"keywords": [
"browserify",
"minify",
"optimize",
"tree-shaking",
"uglify"
],
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/browserify/tinyify.git"
},
"scripts": {
"lint": "standard",
"tests-only": "node test",
"test": "npm run lint && npm run tests-only"
}
}