-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "json-optimize",
"description": "Optimize objects for smaller JSON footprint by temporarily replacing key names with shorter ones",
"keywords": [
"json",
"optimize",
"compress"
],
"author": {
"name": "Rune Bjerke",
"email": "github.public@green.spoox.org",
"url": "http://spoox.org"
},
"version": "0.1.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sp00x/json-optimize.git"
},
"homepage": "https://github.com/sp00x/json-optimize",
"bugs": {
"url": "https://github.com/sp00x/json-optimize/issues"
},
"scripts": {
"test": "node tests/test.js",
"test-size": "node tests/test-size.js"
},
"main": "dist/json-optimize.js",
"devDependencies": {
"assert": "^1.3.0",
"format-number": "^1.0.2",
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-uglify": "^0.8.0",
"grunt-update-json": "^0.2.1",
"load-grunt-tasks": "^3.1.0",
"look": "^0.1.3",
"msgpack": "^0.2.6",
"sprintf": "^0.1.5"
},
"engines": {
"node": "*"
},
"private": false
}