-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "elastic-query-creator",
"version": "1.0.2",
"description": "An application where you can create Elasticsearch queries using Typescript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src",
"format": "prettier --write src",
"prepare": "husky install",
"build": "tsc"
},
"keywords": [
"query",
"builder",
"elasticsearch"
],
"author": "Bahri Hırfanoğlu",
"repository": {
"type": "git",
"url": "https://github.com/bahri-hirfanoglu/elastic-query-creator"
},
"bugs": {
"url": "https://github.com/bahri-hirfanoglu/elastic-query-creator/issues"
},
"homepage": "https://github.com/bahri-hirfanoglu/elastic-query-creator#readme",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"lint-staged": {
"src/**/*.ts": [
"npm run lint",
"npm run format",
"git add"
]
}
}