This repository has been archived by the owner on Dec 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.55 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
{
"name": "merger-js",
"displayName": "MergerJS",
"version": "3.10.3",
"description": "Yet another simple cross-platform CLI build tool to bundle JavaScript files, with a custom file import syntax, ES8+ minification, auto build capabilities, and native OS notifications.",
"readme": "https://github.com/joao-neves95/merger-js/blob/master/README.md",
"author": {
"name": "shivayl",
"url": "https://github.com/joao-neves95"
},
"license": "GPLv3.0",
"homepage": "https://github.com/joao-neves95/merger-js",
"repository": {
"type": "git",
"url": "https://github.com/joao-neves95/merger-js"
},
"bugs": {
"url": "https://github.com/joao-neves95/merger-js/issues"
},
"main": "merger.js",
"bin": {
"merger": "./merger.js"
},
"preferGlobal": true,
"install": "npm install merger-js -g",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.4.0"
},
"scripts": {
"test": "npm audit && node tests/test.js",
"update": "npm i merger-js -g"
},
"deprecated": false,
"dependencies": {
"chalk": "^2.4.2",
"chokidar": "^3.4.0",
"commander": "^5.1.0",
"inquirer": "^7.1.0",
"is-text-path": "^2.0.0",
"js.system.collections": "^1.5.0",
"line-by-line": "^0.1.6",
"node-notifier": "^6.0.0",
"uglify-es": "^3.3.10"
},
"devDependencies": {
"jasmine": "^3.4.0"
},
"keywords": [
"build",
"bundler",
"tool",
"merge",
"merger",
"uglify",
"minify",
"auto builds",
"auto",
"pack",
"javascript",
"front-end",
"frontend",
"cli"
]
}