forked from boblauer/cachegoose
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.52 KB
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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "parse-cache",
"version": "0.0.13",
"description": "Parse cache that actually works.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"cacheman": "^2.2.1",
"cacheman-memory": "^1.1.0",
"cacheman-redis": "^1.1.2",
"jsosort": "0.0.0",
"sha1": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"eslint": "^4.16.0",
"eslint-plugin-mocha": "^4.11.0",
"mocha": "^5.2.0",
"parse": "^2.1.0",
"should": "^13.2.1",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"xmlhttprequest": "^1.8.0"
},
"scripts": {
"start": "webpack-dev-server --watch --progress --open --mode development",
"test": "npm run build-node && mocha --exit",
"lint": "eslint index.js src/*",
"build-node": "babel src --out-dir out",
"build-web": "webpack --config webpack.config.js --mode production",
"prepublish": "npm run lint && npm run build-node && npm run build-web"
},
"repository": {
"type": "git",
"url": "https://github.com/back4app/parse-cache.git"
},
"keywords": [
"cache",
"memory",
"parse",
"parse-server",
"parseframework",
"redis",
"store",
"ttl"
],
"author": "Ricardo Paiva <ricardo.paiva@back4app.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/back4app/parse-cache/issues"
},
"homepage": "https://www.back4app.com"
}