forked from kibertoad/layered-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.71 KB
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
60
61
62
63
{
"name": "layered-loader",
"version": "3.0.0",
"description": "Data loader with support for caching and fallback data sources ",
"license": "MIT",
"maintainers": [
{
"name": "Igor Savin",
"email": "kibertoad@gmail.com"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"docker:start": "docker-compose -f docker-compose.yml up --build -d redis && docker-compose -f docker-compose.yml up --build -d wait_for_redis",
"docker:stop": "docker-compose -f docker-compose.yml down",
"test": "jest --config=jest.config.json",
"test:everything": "npm run lint && npm run test:coverage",
"test:coverage": "jest --config=jest.config.json --coverage",
"lint": "eslint \"lib/**/*.ts\" \"test/**/*.ts\"",
"prettier": "prettier --write \"{lib,test}/**/*.{js,ts}\" index.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/kibertoad/layered-loader.git"
},
"keywords": [
"data",
"loader",
"load",
"loading",
"cache",
"caching",
"fallback",
"alternate",
"source",
"redis",
"memory"
],
"homepage": "https://github.com/kibertoad/layered-loader",
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"ioredis": "^5.2.3",
"jest": "29.1.2",
"prettier": "^2.7.1",
"tiny-lru": "^9.0.3",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
},
"files": [
"README.md",
"LICENSE",
"dist/*"
]
}