-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@ignatisd/cbrm-elasticsearch",
"version": "0.0.0-semantic-released",
"description": "A CBRM connector package for elasticsearch",
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "NODE_OPTIONS=--max_old_space_size=8192 nodemon src/index.ts",
"build": "tsc -b tsconfig.json",
"test": "npm run eslint",
"eslint": "eslint -c .eslintrc.js --ext .ts src",
"sr": "npx semantic-release --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ignatisD/cbrm-elasticsearch.git"
},
"keywords": [],
"author": "Ignatios Drakoulas",
"license": "MIT",
"bugs": {
"url": "https://github.com/ignatisD/cbrm-elasticsearch/issues"
},
"homepage": "https://github.com/ignatisD/cbrm-elasticsearch#readme",
"nodemonConfig": {
"verbose": false,
"watch": [
"src/**/*.ts",
".env"
],
"ignore": [
"src/**/*.spec.ts"
],
"signal": "SIGTERM",
"delay": 1,
"ext": "ts",
"exec": "ts-node"
},
"dependencies": {
"@ignatisd/cbrm": "^6.0.1",
"bodybuilder": "^2.4.0",
"elastic-apm-node": "^3.30.0",
"es7": "npm:@elastic/elasticsearch@^7.17.0",
"express": "^4.17.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@semantic-release/github": "^8.0.2",
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^38.0.4",
"eslint-plugin-no-null": "^1.0.2",
"nodemon": "^2.0.15",
"semantic-release": "^19.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"branches": [
"master"
]
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": ".",
"tarballDir": "release"
}
],
[
"@semantic-release/github",
{
"assets": "release/*.tgz"
}
]
]
}
}