-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.91 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
{
"name": "searchops",
"version": "0.3.3",
"description": "Base operation files for search service",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc --project tsconfig.dist.json",
"build:watch": "tsc --watch --project tsconfig.dist.json",
"build:clean": "rm -rf lib tsconfig.dist.tsbuildinfo",
"test": "jest",
"test:build": "npm run build --prefix ./test/build",
"format": "prettier --write ./src/**/*.{js,ts}",
"lint": "eslint src --ext .js,.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gupy-io/searchops.git"
},
"keywords": [
"elasticsearch"
],
"author": "Victor Villas",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/gupy-io/searchops/issues"
},
"homepage": "https://github.com/gupy-io/searchops#readme",
"dependencies": {
"@opensearch-project/opensearch": "^2.2.0",
"ajv": "^7.1.1",
"aws-sdk": "^2.847.0",
"fast-json-stable-stringify": "^2.1.0"
},
"peerDependencies": {
"winston": "^3.0.0"
},
"devDependencies": {
"@types/faker": "^5.5.6",
"@types/node": "^14.14.30",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.2.1",
"faker": "^5.5.3",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"log4brains": "^1.0.0-beta.11",
"prettier": "^2.3.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.3.2",
"winston": "^3.3.3"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**/*.{js,ts}"
],
"errorOnDeprecated": true,
"preset": "ts-jest",
"roots": [
"./src"
],
"setupFilesAfterEnv": [
"jest-extended"
],
"testEnvironment": "node",
"verbose": true
}
}