-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.95 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
{
"name": "elasticmagic",
"version": "0.0.5",
"description": "JS orm for elasticsearch.",
"repository": {
"type": "git",
"url": "git+https://github.com/kindritskyiMax/elasticmagic-js.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "run-p test:unit test:integ",
"test:integ": "ES_HOST=es6 jest tests/integ --runInBand",
"test:unit": "ES_HOST=es6 jest tests/unit",
"test:one": "ES_HOST=es6 jest",
"test:ci": "ES_HOST=localhost jest",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:test": "tslint -c tslint.json 'tests/**/*.ts'",
"doc:start": "npm --prefix website run start",
"doc:api:build": "rm -r website/docs/api/* && typedoc --out website/docs/api src --plugin typedoc-plugin-markdown --theme docusaurus2 --readme none --hideBreadcrumbs && rm website/docs/api/index.md && rm -r website/website",
"doc:deploy": "GIT_USER=kindritskyiMax CURRENT_BRANCH=master USE_SSH=true npm --prefix website run deploy"
},
"dependencies": {
"lodash.clonedeep": "4.5.0"
},
"devDependencies": {
"@elastic/elasticsearch": "6.8.4",
"@types/jest": "24.0.25",
"@types/lodash.clonedeep": "4.5.6",
"@types/node": "13.1.4",
"jest": "24.9.0",
"npm-run-all": "^4.1.5",
"ts-jest": "24.2.0",
"tslint": "5.20.1",
"typescript": "3.7.4"
},
"author": "Kindritskiy Maksym <[email protected]>",
"license": "Apache License 2.0",
"keywords": [
"elasticsearch",
"elastic",
"dsl",
"kibana",
"mapping",
"REST",
"search",
"client",
"index"
],
"engines": {
"node": ">=8"
},
"jest": {
"verbose": true,
"testURL": "http://localhost",
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/tests/.*.(test|spec))\\.ts?$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
}
}