-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.84 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
62
{
"name": "@feathers-plus/batch-loader",
"description": "Reduce requests to backend services by batching calls and caching records.",
"version": "0.3.6",
"homepage": "https://github.com/feathersjs-ecosystem/batch-loader",
"main": "lib/",
"types": "types/",
"keywords": [
"feathers",
"feathers-ecosystem",
"batch",
"cache"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:feathersjs-ecosystem/batch-loader.git"
},
"author": {
"name": "John J. Szwaronek",
"email": "[email protected]"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/batch-loader/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"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\"",
"lint": "semistandard lib/*.js lib/**/*.js tests/*.js tests/**/*.js --fix",
"lint:types": "dtslint types/",
"mocha": "mocha --recursive tests/",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --recursive tests/",
"test": "npm run lint && npm run lint:types && npm run coverage"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"devDependencies": {
"@types/feathersjs__feathers": "^3.1.7",
"asyncro": "^3.0.0",
"chai": "^4.3.0",
"dtslint": "^4.0.6",
"istanbul": "1.1.0-alpha.1",
"mocha": "^8.2.1",
"semistandard": "^16.0.0",
"typescript": "^4.1.4"
}
}