forked from donperi/feathers-redis-cache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "feathers-redis-cache",
"description": "Redis cache for feathers service",
"version": "1.2.0",
"homepage": "git://github.com/sarkistlt/feathers-redis-cache",
"main": "build/index.js",
"keywords": [
"feathers",
"feathersjs",
"feathers-hooks",
"redis",
"feathers-cache",
"feathers-redis-cache",
"cache"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/sarkistlt/feathers-redis-cache.git"
},
"author": {
"name": "Sarkis Arutiunian",
"email": "[email protected]"
},
"scripts": {
"build": "rm -rf ./lib && NODE_ENV=production tsc",
"release": "npx semantic-release",
"commit": "npm run build && git add . && npx git-cz && git push",
"prepublish": "npm run build"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"async": "^2.6.2",
"chalk": "^2.4.2",
"moment": "^2.21.0",
"qs": "^6.5.1",
"redis": "^3.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.4",
"@semantic-release/github": "^5.0.6",
"@semantic-release/npm": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"commitizen": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"jest": "^23.6.0",
"ngrok": "^3.1.0",
"nodemon": "^1.17.3",
"rimraf": "^2.6.2",
"semantic-release": "^15.9.17",
"ts-node": "^8.1.0",
"typescript": "^3.4.4"
}
}