This repository has been archived by the owner on Jul 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.02 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
73
74
75
{
"name": "contexture-elasticsearch",
"version": "1.19.8",
"description": "ElasticSearch Provider for Contexture",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./*": {
"import": "./dist/esm/*",
"require": "./dist/cjs/*"
}
},
"files": [
"./dist"
],
"scripts": {
"prepack": "node scripts/build.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:ci": "yarn test --coverage --json --outputFile test-results.json",
"fmt": "prettier --ignore-path .gitignore --write src test",
"lint": "eslint --ignore-path .gitignore src test",
"lint:ci": "yarn lint -o lint-results.json -f json",
"duti:fix": "yarn lint --fix; yarn fmt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprocure/contexture-elasticsearch.git"
},
"keywords": [
"contexture",
"elasticsearch"
],
"author": "Samuel Greene",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartprocure/contexture-elasticsearch/issues"
},
"homepage": "https://github.com/smartprocure/contexture-elasticsearch#readme",
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"semi": false,
"arrowParens": "avoid"
},
"dependencies": {
"@elastic/datemath": "^2.3.0",
"debug": "^4.3.1",
"futil": "^1.71.8",
"js-combinatorics": "^0.5.3",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"moment-timezone": "^0.5.28",
"unidecode": "^0.1.8"
},
"devDependencies": {
"@elastic/elasticsearch": "^7.11.0",
"@flex-development/toggle-pkg-type": "^1.0.1",
"agentkeepalive": "^4.1.4",
"contexture": "^0.12.11",
"danger": "^11.1.2",
"danger-plugin-coverage": "^1.6.2",
"duti": "^0.15.2",
"esbuild": "^0.16.17",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.27.4",
"glob": "^8.0.3",
"jest": "^29.0.2",
"json-stable-stringify": "^1.0.1",
"prettier": "^2.8.2"
},
"packageManager": "[email protected]"
}