-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.78 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
64
65
66
67
68
69
70
{
"name": "feathers-batch",
"description": "Batch multiple Feathers service calls into one",
"version": "0.2.1",
"repository": {
"type": "git",
"url": "https://github.com/feathersjs-ecosystem/feathers-batch.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-batch/issues"
},
"homepage": "https://github.com/feathersjs-ecosystem/feathers-batch",
"keywords": [
"feathers",
"feathers-plugin",
"batch",
"rest",
"api"
],
"author": "David Luecke <daff@neyeon.com> (https://feathersjs.com)",
"contributors": [],
"engines": {
"node": ">= 12"
},
"main": "lib/",
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator -u feathersjs-ecosystem -p feathers-batch",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"lint": "semistandard --fix",
"mocha": "mocha --exit --recursive test/",
"coverage": "nyc npm run mocha",
"test": "npm run lint && npm run coverage"
},
"browser": "./client/index.js",
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**",
"client/**",
"*.d.ts",
"*.js"
],
"dependencies": {
"@feathersjs/errors": "^4.5.8"
},
"devDependencies": {
"@feathersjs/express": "^4.5.8",
"@feathersjs/feathers": "^4.5.8",
"@feathersjs/rest-client": "^4.5.8",
"@feathersjs/socketio": "^4.5.8",
"axios": "^0.20.0",
"feathers-memory": "^4.1.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"semistandard": "^14.2.3"
}
}