-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
40 lines (40 loc) · 867 Bytes
/
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
{
"name": "jsonpack",
"author": "Rodrigo González | sapienlab",
"description": "A compression algorithm for JSON",
"version" : "1.1.5",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/roro89/jsonpack/blob/master/LICENSE.md"
}
],
"maintainers":[{
"name": "Rodrigo González",
"email": "[email protected]",
"web" : "http://sapienlab.com"
}],
"repository": {
"type": "git",
"url": "https://github.com/sapienlab/jsonpack.git"
},
"keywords" : [
"compress",
"json"
],
"homepage" : "https://github.com/sapienlab/jsonpack",
"readmeFilename" : "README.md",
"main": "./main",
"dojoBuild": "package.js",
"icon" : "https://raw.github.com/sapienlab/jsonpack/master/icon.png",
"volo" : {
"baseDir" : "."
},
"devDependencies": {
"mocha": "*",
"expect.js" : "*"
},
"scripts": {
"test": "make test"
}
}