-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"name": "slide-limiter",
"version": "1.0.2",
"description": "",
"homepage": "https://github.com/m-elbably/slide-limiter#readme",
"repository": "https://github.com/m-elbably/slide-limiter",
"bugs": {
"url": "https://github.com/m-elbably/slide-limiter/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"husky": "husky install",
"build": "tsc --build",
"release": "standard-version",
"release:major": "npm run release -- --release-as major",
"release:minor": "npm run release -- --release-as minor",
"release:update": "npm run release -- --release-as patch --skip.tag",
"test": "jest",
"coverage": "jest --coverage",
"coverall": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"ioredis": "^5.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@types/ioredis": "^5.0.0",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.7",
"coveralls": "^3.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"keywords": [],
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"author": "Mohamed El-Bably (https://github.com/m-elbably)",
"license": "MIT"
}