-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.03 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": "minjson",
"description": "minjson is a very simple program with a CLI (Command Line Interface) for the purpose of minifying and beautifying JSON files on the Command Line.",
"version": "0.0.4",
"keywords": [
"json",
"minifier",
"beautifier",
"minify",
"beautify"
],
"homepage": "https://github.com/tssajo/minjson",
"author": "Zoltan Frombach",
"maintainers": [
"Zoltan Frombach <[email protected]>"
],
"contributors": [
"Zoltan Frombach <[email protected]>"
],
"license": {
"type": "MIT",
"url": "https://github.com/tssajo/minjson/blob/master/LICENSE.md"
},
"bin": "./cli.js",
"repository": {
"type": "git",
"url": "https://github.com/tssajo/minjson"
},
"bugs": {
"url": "https://github.com/tssajo/minjson/issues"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"cli": "^1.0.1",
"concat-stream": "^2.0.0",
"uglify-js": "3.x.x"
},
"files": [
"cli.js",
"jsonminifier.js",
"LICENSE.md"
],
"main": "./jsonminifier.js"
}