-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.74 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
{
"name": "feathers-solr",
"description": "A service plugin for Solr",
"version": "3.1.1",
"keywords": [
"feathers",
"feathers-plugin",
"solr",
"solr-client",
"search",
"database",
"api"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/sajov/feathers-solr.git"
},
"author": {
"name": "sajov"
},
"contributors": [],
"bugs": {
"url": "https://github.com/sajov/feathers-solr/issues"
},
"engines": {
"node": ">= 16"
},
"main": "lib/",
"scripts": {
"prepare": "npm run build",
"prepublish": "npm run build",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint src/**/*.ts --fix",
"lint:test": "ESLINT_USE_FLAT_CONFIG=false eslint test/**/*.ts --fix",
"build": "shx rm -rf lib/ && tsc",
"test": "npm run build && npm run mocha",
"mocha": "mocha --config .mocharc.json --recursive test/**.test.ts test/**/*.test.ts",
"coverage": "nyc npm run test"
},
"directories": {
"lib": "lib"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@feathersjs/adapter-commons": "5.0.31",
"@feathersjs/commons": "5.0.31",
"@feathersjs/errors": "5.0.31"
},
"devDependencies": {
"@feathersjs/adapter-tests": "5.0.31",
"@feathersjs/express": "5.0.31",
"@feathersjs/feathers": "5.0.31",
"@stylistic/eslint-plugin": "^2.6.1",
"@types/mocha": "^10.0.7",
"@types/node": "^22.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}