-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
65 lines (65 loc) · 1.9 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
{
"name": "feathers-elasticsearch",
"description": "Elasticsearch adapter for FeathersJs",
"version": "3.1.0",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-elasticsearch",
"main": "lib/",
"types": "types",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-elasticsearch.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-elasticsearch/issues"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"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": "eslint --fix .",
"dtslint": "dtslint types",
"mocha": "mocha --opts mocha.opts",
"coverage": "nyc npm run mocha",
"test": "npm run lint && npm run dtslint && npm run coverage"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/adapter-commons": "^4.3.8",
"@feathersjs/commons": "^4.3.0",
"@feathersjs/errors": "^4.3.4",
"debug": "^4.1.1"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^4.3.4",
"@feathersjs/express": "^4.3.5",
"@feathersjs/feathers": "^4.3.4",
"@feathersjs/socketio": "^4.3.5",
"@types/elasticsearch": "^5.0.35",
"chai": "^4.2.0",
"dtslint": "^3.0.0",
"elasticsearch": "^16.4.0",
"eslint": "^6.5.1",
"mocha": "^6.2.1",
"nyc": "^15.0.0",
"semistandard": "^14.2.0",
"sinon": "^9.0.0"
}
}