forked from getify/JSON.minify
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "jsonminify",
"version": "0.4.2",
"description": "JSON.minify() minifies blocks of JSON-like content into valid JSON by removing all whitespace *and* comments.",
"keywords": [
"node",
"json",
"JSON-like",
"comment"
],
"scripts": {
"test": "mocha -r should test/test-*.js"
},
"homepage": "https://github.com/fkei/JSON.minify",
"bugs": {
"email": "kei.topaz@gmail.com",
"url": "https://github.com/fkei/JSON.minify/issues"
},
"author": {
"name": "Kei Funagayama",
"email": "kei.topaz@gmail.com",
"url": "https://github.com/fkei"
},
"repository": {
"type": "git",
"url": "https://github.com/fkei/JSON.minify.git"
},
"devDependencies": {
"mocha": "*",
"jshint": "*",
"should": "*",
"jsdoc": "*",
"plato": "*"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.1.0"
},
"main": "./minify.json.js",
"license": "MIT"
}