generated from rudderlabs/rudder-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.7 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
{
"name": "@rudderstack/workflow-engine",
"version": "0.8.18",
"description": "A generic workflow execution engine",
"main": "build/index.js",
"types": "build/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest --coverage --verbose",
"test:no-logging": "LOG_LEVEL=100 jest --coverage --verbose",
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf build",
"build:clean": "npm run clean && npm run build",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . || exit 1",
"lint-staged": "lint-staged",
"format": "prettier --write '**/*.ts' '**/*.json'",
"lint": "npm run format && npm run lint:fix",
"prepare": "husky install",
"jest:scenarios": "jest e2e.test.ts --verbose",
"test:scenario": "jest test/scenario.test.ts --verbose",
"test:stryker": "stryker run",
"check:lint": "eslint . -f json -o reports/eslint.json || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rudderlabs/rudder-workflow-engine.git"
},
"keywords": [
"rudder",
"rudderstack",
"cdp",
"workflow",
"engine"
],
"author": "RudderStack",
"license": "MIT",
"bugs": {
"url": "https://github.com/rudderlabs/rudder-workflow-engine/issues"
},
"homepage": "https://github.com/rudderlabs/rudder-workflow-engine#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@stryker-mutator/core": "^6.4.1",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.197",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"commander": "^10.0.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-html-reporter": "^3.10.2",
"lint-staged": "^15.2.10",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@rudderstack/json-template-engine": "^0.19.1",
"jsonata": "^2.0.5",
"lodash": "^4.17.21",
"object-sizeof": "^2.6.5",
"yaml": "^2.6.0"
},
"lint-staged": {
"*.(ts|json|yaml)": "prettier --write"
},
"files": [
"build/**/*.[jt]s",
"CHANGELOG.md"
]
}