-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 724 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 724 Bytes
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
{
"name": "redis-schema",
"version": "0.4.6",
"description": "Declarative Redis",
"main": "lib/src/index.js",
"repository": "https://github.com/hanlindev/node-redis-schema",
"author": "Han Lin <hanlin.dev@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/lodash": "^4.14.67",
"@types/moment": "^2.13.0",
"@types/redis": "^2.6.0",
"global": "^4.3.2",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"redis": "^2.7.1"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"chai": "^4.0.2",
"mocha": "^3.4.2",
"typescript": "2.3.4"
},
"scripts": {
"test": "mocha",
"prepublish": "tsc"
},
"types": "lib/src/index.d.ts"
}