-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·61 lines (61 loc) · 1.83 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
60
61
{
"name": "feathers-dataloader",
"description": "Reduce requests to backend services by batching calls and caching records.",
"version": "0.1.0",
"homepage": "https://github.com/feathersjs-ecosystem/dataloader",
"main": "src/",
"types": "types/",
"keywords": [
"feathers",
"feathers-ecosystem",
"batch",
"cache",
"dataloader"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:feathersjs-ecosystem/dataloader.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/dataloader/issues"
},
"engines": {
"node": ">= 12"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"prettier": "npx prettier \"./(src|tests)/**/*.js\" --write",
"lint:types": "dtslint types/",
"mocha": "mocha --recursive tests/",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --recursive tests/",
"test": "npm run prettier && npm run coverage"
},
"directories": {
"src": "src"
},
"devDependencies": {
"@feathersjs/feathers": "^5.0.0-pre.28",
"chai": "^4.3.6",
"dtslint": "^4.2.1",
"feathers-memory": "^4.1.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "^10.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@feathersjs/errors": "^4.5.15",
"dataloader": "^2.1.0"
}
}