generated from senecajs/SenecaOpensearchStore
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.18 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
{
"name": "@seneca/opensearch-store",
"version": "0.0.1",
"description": "Seneca OpenSearch data storage plugin.",
"main": "dist/OpensearchStore.js",
"type": "commonjs",
"types": "dist/OpensearchStore.d.ts",
"license": "MIT",
"author": "Richard Rodger (http://richardrodger.com)",
"contributors": [
"Richard Rodger (http://richardrodger.com)"
],
"scripts": {
"test": "jest --coverage",
"test-some": "jest -t",
"test-watch": "jest --coverage --watchAll",
"watch": "tsc -w -d",
"build": "tsc -d",
"doc": "seneca-doc -p seneca-entity",
"prettier": "prettier --write --no-semi --single-quote src/**/*.ts test/*.js",
"reset": "npm run clean && npm i && npm run build && npm test",
"clean": "rm -rf node_modules dist package-lock.json yarn.lock",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i --registry=http://registry.npmjs.org && npm run repo-publish-quick",
"repo-publish-quick": "npm run prettier && npm run build && npm run doc && npm test && npm run repo-tag && npm publish --access public --registry=https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/senecajs/SenecaOpensearchStore"
},
"keywords": [
"seneca",
"plugin",
"store",
"mem",
"memory"
],
"peerDependencies": {
"@seneca/entity-util": ">=2",
"seneca": ">=3",
"seneca-entity": ">=25",
"seneca-promisify": ">=3"
},
"devDependencies": {
"@seneca/doc": "^7.2.0",
"@seneca/maintain": "^0.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"esbuild": "^0.20.1",
"esbuild-jest": "^0.5.0",
"jest": "^29.7.0",
"dotenv": "^16.4.5",
"prettier": "^3.2.5",
"seneca-msg-test": "^4.1.0",
"seneca-store-test": "^5.2.0",
"typescript": "^5.3.3"
},
"files": [
"README.md",
"CHANGES.md",
"LICENSE",
"src",
"dist"
],
"dependencies": {
"@aws-sdk/credential-provider-node": "^3.525.0",
"@opensearch-project/opensearch": "^2.5.0"
}
}