-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "@jamify/redis-streams",
"version": "1.3.0",
"license": "MIT",
"author": "styxlab",
"description": "Stream data to Redis with TypeScript",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"redis",
"stream",
"ioredis"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jamifyjs/redis-streams"
},
"scripts": {
"test": "jest --coverage --detectOpenHandles --forceExit",
"test:watch": "jest --coverage --watchAll",
"build": "tsc",
"build:watch": "onchange 'src/**/*.ts' -- yarn run build",
"view:coverage": "serve coverage/lcov-report",
"clean": "rm -rf coverage build/**/*.js build/**/*.map images/*1?.jpg",
"start": "node build/index.js",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"prepare": "yarn build",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {
"fs": "^0.0.1-security",
"ioredis": "^4.17.3",
"stream": "^0.0.2"
},
"devDependencies": {
"@types/ioredis": "^4.17.6",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@types/source-map-support": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"jest": "^26.5.3",
"onchange": "^7.0.2",
"prettier": "^2.1.2",
"serve": "^11.3.2",
"source-map-support": "^0.5.19",
"ts-jest": "^26.4.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3"
},
"files": [
"build/**/*"
]
}