-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
46 lines (46 loc) · 1.31 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": "@gojob/ts-elasticsearch",
"version": "1.3.3",
"license": "MIT",
"description": "Elasticsearch decorated by TypeScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/gojob-1337/node-ts-elasticsearch"
},
"keywords": [
"elasticsearch",
"typescript",
"decorator"
],
"pre-commit": [
"lint"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tslint -c ./tslint.json -p ./tsconfig.json -t verbose",
"start": "echo 'Not runable' && exit 1",
"test": "jest --silent=false --config=jest.json",
"coverage": "yarn test --coverage"
},
"devDependencies": {
"@gojob/tslint-config": "^1.0.0",
"@types/jest": "^24.0.16",
"@types/node": "^12.6.8",
"coveralls": "^3.0.5",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.3"
},
"dependencies": {
"@types/elasticsearch": "^5.0.34",
"elasticsearch": "^16.3.0",
"reflect-metadata": "^0.1.13"
}
}