forked from anchovycation/metronom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
{
"name": "metronom",
"version": "2.2.1",
"description": "Easy to use Redis ORM based on node-redis",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"contributors": [
{
"name": "Alihan SARAC",
"email": "[email protected]",
"url": "http://www.saracalihan.com/"
},
{
"name": "Beyza ERKAN",
"email": "[email protected]",
"url": "https://beyzaerkan.github.io/"
}
],
"license": "GPL-3.0-or-later",
"scripts": {
"watch": "tsc --watch -p ./tsconfig.json",
"build": "tsc",
"test:unit": "npm run build && jest ./tests/unit --verbose --forceExit",
"test": "docker-compose -f ./tests/docker-compose.yml up -d && npm run test:unit --detectOpenHandles ; cd tests && docker compose down",
"lint": "eslint --ext .ts .",
"lint:fix": "npm run lint -- --fix",
"doc": "typedoc --plugin typedoc-plugin-markdown --out docs lib/*.ts"
},
"dependencies": {
"redis": "^4.0.3"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.0",
"typedoc": "^0.23.2",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/anchovycation/metronom.git"
},
"bugs": {
"url": "https://github.com/anchovycation/metronom/issues"
},
"homepage": "https://anchovycation.github.io/metronom/"
}