-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 1.3 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
{
"name": "uglifyjs-folder",
"description": "Run terser on a folder and minify the result in a single file",
"version": "3.3.0",
"homepage": "https://github.com/mihai-vlc/uglifyjs-folder",
"author": {
"name": "Mihai Ionut Vilcu",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/mihai-vlc/uglifyjs-folder.git"
},
"bugs": {
"url": "https://github.com/mihai-vlc/uglifyjs-folder/issues"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"keywords": [
"uglify",
"folder",
"directory",
"cli"
],
"preferGlobal": true,
"bin": {
"uglifyjs-folder": "cli.js"
},
"scripts": {
"test": "ava --no-worker-threads",
"test:watch": "ava --no-worker-threads --watch",
"coverage": "nyc --reporter=lcov ava --no-worker-threads"
},
"ava": {
"files": [
"test/index.js",
"test/snapshots.js"
],
"ignoredByWatcher": [
"tmp/**"
],
"snapshotDir": "test/snapshots-data"
},
"dependencies": {
"extend": "3.0.2",
"globby": "11.1.0",
"graceful-fs": "4.2.11",
"meow": "9.0.0",
"mkdirp": "1.0.4",
"terser": "5.18.1"
},
"devDependencies": {
"ava": "5.1.0",
"del": "6.1.1",
"nyc": "15.1.0",
"proxyquire": "2.1.3",
"sinon": "15.0.1"
}
}