-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 911 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 911 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
31
32
33
34
35
36
37
{
"name": "node-redis-script",
"version": "2.0.1",
"description": "Easily use redis scripts in Node",
"main": "src/index",
"scripts": {
"pretest": "npm run start-redis",
"posttest": "npm run cleanup",
"test": "mocha --exit test",
"start-redis": "docker-compose up -d redis",
"cleanup": "docker-compose stop && docker-compose rm -f",
"monitor": "docker-compose up monitor"
},
"repository": {
"type": "git",
"url": "https://github.com/thedeveloper/scripty"
},
"keywords": [
"redis",
"script",
"node.js",
"manager"
],
"author": "Geoff Wagstaff",
"license": "MIT",
"bugs": {
"url": "https://github.com/thedeveloper/scripty/issues"
},
"homepage": "https://github.com/thedeveloper/scripty",
"dependencies": {},
"devDependencies": {
"chai": "^4.3.0",
"ioredis": "^4.24.6",
"mocha": "^8.3.0",
"redis": "^3.0.2"
}
}