-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 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
47
48
{
"name": "jsonappy",
"version": "0.0.3",
"description": "Snappy compress JSON for Redis and other providers.",
"main": "index.js",
"scripts": {
"start": "onchange '*.js' 'lib/**/*.js' -- npm run spec",
"spec": "tape test.js | tap-spec",
"test": "npm run lint && npm run spec",
"lint": "eslint index.js lib"
},
"files": [
"lib",
"index.js"
],
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chefsplate/jsonappy.git"
},
"keywords": [
"JSON",
"snappy",
"cache",
"optimize",
"compress",
"redis"
],
"author": "Helder Santana",
"license": "MIT",
"bugs": {
"url": "https://github.com/chefsplate/jsonappy/issues"
},
"homepage": "https://github.com/chefsplate/jsonappy#readme",
"devDependencies": {
"eslint": "^2.2.0",
"eslint-config-airbnb": "6.0.1",
"onchange": "^2.0.0",
"redis": "^2.4.2",
"tap-spec": "^4.1.1",
"tape": "^4.4.0"
},
"dependencies": {
"snappy": "^4.1.2"
}
}