-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.12 KB
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
{
"name": "es-libr",
"type": "commonjs",
"version": "1.0.0",
"author": "WangYalong <wylfocus@gmail.com>",
"description": "A simple library for working with ES data",
"main": "index.ts",
"scripts": {
"build": "webpack",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"testcc": "nodemon test-scripts/runtest.ts",
"test1": "jest --setupFiles dotenv/config -- ./src/__tests__/lib.test.ts",
"test2": "jest --setupFiles dotenv/config -- ./src/core/__tests__/lite-transformer.body.test.ts",
"test": "jest --setupFiles dotenv/config",
"prepare": "husky"
},
"keywords": [
"elasticsearch",
"koa",
"ndjson"
],
"license": "UNLICENSED",
"dependencies": {
"@elastic/elasticsearch": "^8.16.1",
"@koa/cors": "^5.0.0",
"@types/content-type": "^1.1.8",
"@types/elasticsearch": "^5.0.43",
"@types/koa__cors": "^5.0.0",
"@types/koa-proxies": "^0.11.0",
"@types/ndjson": "^2.0.4",
"@types/stream-each": "^1.2.3",
"@types/through2": "^2.0.41",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"koa": "^2.15.3",
"koa-router": "^12.0.1",
"lodash": "^4.17.21",
"ndjson": "^2.0.0",
"path-to-regexp": "^8.2.0",
"stream-each": "^1.2.3",
"through2": "^4.0.2",
"ts-lint": "^4.5.1",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tslog": "^3.3.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.14.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/lodash": "^4.17.6",
"@types/node": "^20.14.10",
"@types/supertest": "^6.0.2",
"babel-loader": "^9.2.1",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.14.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}