@meltwater/conversations-api-services 1.1.24 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,63 +1,62 @@
1
1
  {
2
- "name": "@meltwater/conversations-api-services",
3
- "version": "1.1.24",
4
- "description": "Repository to contain all conversations api services shared across our services",
5
- "main": "dist/cjs/data-access/index.js",
6
- "module": "dist/esm/data-access/index.js",
7
- "exports": {
8
- ".": {
9
- "require": "./dist/cjs/data-access/index.js",
10
- "import": "./dist/esm/data-access/index.js"
2
+ "name": "@meltwater/conversations-api-services",
3
+ "version": "1.2.2",
4
+ "description": "Repository to contain all conversations api services shared across our services",
5
+ "main": "dist/cjs/data-access/index.js",
6
+ "module": "dist/esm/data-access/index.js",
7
+ "exports": {
8
+ ".": {
9
+ "require": "./dist/cjs/data-access/index.js",
10
+ "import": "./dist/esm/data-access/index.js"
11
+ }
12
+ },
13
+ "directories": {
14
+ "doc": "docs"
15
+ },
16
+ "prettier": "@meltwater/engage-prettier-config",
17
+ "scripts": {
18
+ "test": "echo \"Error: no test specified\" && exit 1",
19
+ "build:cjs": "BABEL_ENV=cjs babel src --out-dir dist/cjs",
20
+ "build:esm": "BABEL_ENV=esm babel src --out-dir dist/esm",
21
+ "build": "npm run build:cjs && npm run build:esm && npm run postbuild",
22
+ "postbuild": "node scripts/create-package-json.js"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/meltwater/conversations-api-services.git"
27
+ },
28
+ "keywords": [],
29
+ "author": "",
30
+ "license": "ISC",
31
+ "bugs": {
32
+ "url": "https://github.com/meltwater/conversations-api-services/issues"
33
+ },
34
+ "homepage": "https://github.com/meltwater/conversations-api-services#readme",
35
+ "dependencies": {
36
+ "axios": "^1.1.3",
37
+ "oauth-1.0a": "^2.2.6",
38
+ "@elastic/ecs-winston-format": "^1.5.3",
39
+ "@hapi/joi": "^17.1.1",
40
+ "@meltwater/date-range": "^3.6.0",
41
+ "@meltwater/engage-conversations-schemas": "^2.3.10",
42
+ "@meltwater/xrunes": "^1.1.1",
43
+ "@meltwater/xrunes-core": "^3.0.2",
44
+ "apollo-server-hapi": "^3.13.0",
45
+ "aws-sdk": "^2.1562.0",
46
+ "dataloader": "^2.2.2",
47
+ "html-entities": "^2.4.0",
48
+ "jsonwebtoken": "^9.0.2",
49
+ "lodash": "^4.17.21",
50
+ "moment": "^2.30.1",
51
+ "prom-client": "^15.1.0",
52
+ "sha.js": ">=2.4.12",
53
+ "superagent": "^8.1.2",
54
+ "winston": "^3.11.0"
55
+ },
56
+ "devDependencies": {
57
+ "@babel/cli": "^7.25.9",
58
+ "@babel/core": "^7.26.0",
59
+ "@babel/preset-env": "^7.26.0",
60
+ "@meltwater/engage-prettier-config": "^1.0.0"
11
61
  }
12
- },
13
- "directories": {
14
- "doc": "docs"
15
- },
16
- "prettier": "@meltwater/engage-prettier-config",
17
- "scripts": {
18
- "test": "echo \"Error: no test specified\" && exit 1",
19
- "build:cjs": "BABEL_ENV=cjs babel src --out-dir dist/cjs",
20
- "build:esm": "BABEL_ENV=esm babel src --out-dir dist/esm",
21
- "build": "npm run build:cjs && npm run build:esm && npm run postbuild",
22
- "postbuild": "node scripts/create-package-json.js"
23
- },
24
- "repository": {
25
- "type": "git",
26
- "url": "git+https://github.com/meltwater/conversations-api-services.git"
27
- },
28
- "keywords": [],
29
- "author": "",
30
- "license": "ISC",
31
- "bugs": {
32
- "url": "https://github.com/meltwater/conversations-api-services/issues"
33
- },
34
- "homepage": "https://github.com/meltwater/conversations-api-services#readme",
35
- "dependencies": {
36
- "axios": "^1.1.3",
37
- "oauth-1.0a": "^2.2.6",
38
- "@meltwater/social-twit": "^2.2.12",
39
- "@elastic/ecs-winston-format": "^1.5.3",
40
- "@hapi/joi": "^17.1.1",
41
- "@meltwater/date-range": "^3.6.0",
42
- "@meltwater/engage-conversations-schemas": "^2.3.10",
43
- "@meltwater/xrunes": "^1.1.1",
44
- "@meltwater/xrunes-core": "^3.0.1",
45
- "apollo-server-hapi": "^3.13.0",
46
- "aws-sdk": "^2.1562.0",
47
- "dataloader": "^2.2.2",
48
- "html-entities": "^2.4.0",
49
- "jsonwebtoken": "^9.0.2",
50
- "lodash": "^4.17.21",
51
- "moment": "^2.30.1",
52
- "prom-client": "^15.1.0",
53
- "sha.js": ">=2.4.12",
54
- "superagent": "^8.1.2",
55
- "winston": "^3.11.0"
56
- },
57
- "devDependencies": {
58
- "@babel/cli": "^7.25.9",
59
- "@babel/core": "^7.26.0",
60
- "@babel/preset-env": "^7.26.0",
61
- "@meltwater/engage-prettier-config": "^1.0.0"
62
- }
63
62
  }