forked from rudderlabs/rudder-transformer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.26 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
96
97
98
99
100
101
102
103
{
"name": "rudder-transformer",
"version": "1.7.0",
"description": "",
"homepage": "https://github.com/rudderlabs/rudder-transformer#readme",
"bugs": {
"url": "https://github.com/rudderlabs/rudder-transformer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rudderlabs/rudder-transformer.git"
},
"license": "ISC",
"author": "",
"main": "GATransform.js",
"scripts": {
"dependency": "npm install",
"lint": "eslint . || exit 0",
"lint-check": "eslint --ext .js,.json . --fix; exit 0",
"lint-json-fix": "npx eslint --ext .json --fix .",
"merge-check": "npm run verify || exit 1; codecov",
"start": "node destTransformer.js",
"testDestinations": "npx jest --runInBand --detectOpenHandles --coverage --notify",
"testVersionedRouter": "npx jest versionedRouter --type=all --detectOpenHandles --notify",
"testVersioned": "npx jest versionedRouter --destName=heap --type=all --notify",
"verify": "eslint . || exit 1; jest --runInBand --detectOpenHandles --coverage --notify || exit 1",
"testTestRouter": "npx jest testRouter",
"test": "npm run testDestinations && npm run testVersioned && npm run testTestRouter"
},
"dependencies": {
"@amplitude/ua-parser-js": "^0.7.24",
"@aws-sdk/client-lambda": "^3.186.0",
"@aws-sdk/client-s3": "^3.180.0",
"@aws-sdk/lib-storage": "^3.142.0",
"@bugsnag/js": "^7.18.0",
"@ndhoule/extend": "^2.0.0",
"ajv": "^8.11.0",
"ajv-draft-04": "^1.0.0",
"axios": "^0.27.2",
"btoa": "^1.2.1",
"component-each": "^0.2.6",
"crypto-js": "^4.0.0",
"dotenv": "^8.6.0",
"flat": "^5.0.2",
"get-value": "^3.0.1",
"handlebars": "^4.7.7",
"http-graceful-shutdown": "^3.0.2",
"https-proxy-agent": "^5.0.0",
"is": "^3.1.0",
"is-ip": "^3.1.0",
"isolated-vm": "^4.3.6",
"json-diff": "^0.9.0",
"json-query": "^2.2.2",
"jsontoxml": "^1.0.1",
"jszip": "^3.10.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-router": "^7.4.0",
"lodash": "^4.17.21",
"match-json": "^1.3.4",
"md5": "^2.3.0",
"moment": "^2.29.2",
"moment-timezone": "^0.5.35",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.7",
"object-hash": "^2.2.0",
"parse-static-imports": "^1.1.0",
"pprof": "^3.2.0",
"prom-client": "^14.0.1",
"rudder-transformer-cdk": "^1.4.3",
"rudder-workflow-engine": "^0.3.0",
"set-value": "^4.0.1",
"sha256": "^0.2.0",
"statsd-client": "^0.4.4",
"truncate-utf8-bytes": "^1.0.2",
"ua-parser-js": "^0.8.1",
"unset-value": "^2.0.1",
"uuid": "^8.3.2",
"valid-url": "^1.0.9"
},
"devDependencies": {
"acorn": "^7.4.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.0",
"jest-when": "^2.7.2",
"mocked-env": "^1.3.2",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2"
},
"precommit": {
"run": "lint, testDestinations, testVersioned, testTestRouter"
},
"//": "npm versions matched against node are here: https://nodejs.org/en/download/releases/",
"engines": {
"node": ">=14.15.0 <15",
"npm": ">=6.14.8"
}
}