-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "eggjs-elasticsearch",
"version": "0.0.6",
"description": "eggjs elasticsearch plugin",
"types": "./types.d.ts",
"eggPlugin": {
"name": "elasticsearch"
},
"scripts": {
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov",
"build": "tsc -p ./tsconfig.build.json && cp ./package.json lib/ && cp README.md lib/ && cp ./LICENSE lib/",
"lint:fix": "eslint . --ext .ts --fix",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beace/eggjs-elasticsearch.git"
},
"keywords": [
"eggjs",
"elasticsearch"
],
"author": "beace <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Beace/eggjs-elasticsearch/issues"
},
"homepage": "https://github.com/Beace/eggjs-elasticsearch#readme",
"devDependencies": {
"@artus/eslint-config-artus": "^0.0.1",
"@artus/tsconfig": "^1.0.1",
"@elastic/elasticsearch-mock": "^2.0.0",
"@types/mocha": "^10.0.1",
"egg": "^3.16.1",
"egg-bin": "^6.4.1",
"egg-ci": "^2.2.0",
"egg-mock": "^5.10.7",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.27.5",
"supertest": "^6.3.3",
"typescript": "^4.7.2"
},
"ci": {
"version": "16, 18"
},
"dependencies": {
"@elastic/elasticsearch": "^8.8.1"
}
}