-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "es-dts-gen",
"version": "0.0.4-0",
"description": "Generates TypeScript definition files from the index mappings of Elasticsearch.",
"main": "./src/cli.js",
"bin": {
"es-dts-gen": "./bin/es-dts-gen"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc -p .",
"lint": "eslint --ext .ts src/",
"prettier": "prettier --write --check src/ test/**/*.ts",
"test": "jest",
"release-patch": "yarn version --patch && yarn version --prepatch"
},
"keywords": [
"Elasticsearch",
"TypeScript"
],
"homepage": "https://github.com/legalscape/es-dts-gen",
"author": {
"name": "Legalscape, Inc.",
"url": "https://github.com/legalscape"
},
"license": "MIT",
"dependencies": {
"@elastic/elasticsearch": "^7.9.1",
"arg": "^4.1.3",
"prettier": "^2.1.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.2",
"@types/prettier": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"jest": "^26.6.1",
"ts-jest": "^26.4.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}