-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
87 lines (87 loc) · 2.04 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "feathers-batch",
"description": "Batch multiple Feathers service calls into one",
"version": "1.1.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 <[email protected]> (https://feathersjs.com)",
"contributors": [],
"engines": {
"node": ">= 12"
},
"main": "lib/",
"types": "types/",
"scripts": {
"lint": "semistandard --fix",
"mocha": "mocha --exit --recursive test/",
"coverage": "nyc npm run mocha",
"test": "npm run lint && npm run dtslint && npm run coverage",
"dtslint": "dtslint types",
"update-dependencies": "ncu -u"
},
"browser": "./client/index.js",
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**",
"client/**",
"types/**",
"*.d.ts",
"*.js"
],
"release": {
"branches": [
"release"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"dependencies": {
"@feathersjs/errors": "^4.5.15"
},
"devDependencies": {
"@feathersjs/express": "^4.5.15",
"@feathersjs/feathers": "^4.5.15",
"@feathersjs/rest-client": "^4.5.15",
"@feathersjs/socketio": "^4.5.15",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.7.14",
"axios": "^0.27.2",
"dtslint": "^4.2.1",
"feathers-memory": "^4.1.0",
"mocha": "^10.0.0",
"npm-check-updates": "^16.0.6",
"nyc": "^15.1.0",
"semistandard": "^16.0.1",
"typescript": "^4.8.2"
}
}