-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.61 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
{
"name": "execution-engine",
"version": "2.1.0",
"description": "A TypeScript library for tracing and visualizing code execution workflows.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"index.js"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --fix",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build",
"prepare": "npm audit",
"commitlint": "commitlint --edit"
},
"repository": {
"type": "git",
"url": "https://github.com/tabkram/execution-engine.git"
},
"keywords": [
"typescript",
"execution",
"execution-engine",
"workflow",
"workflow-engine",
"trace",
"json",
"graph",
"visualization"
],
"author": "Akram TABKA",
"license": "MIT",
"bugs": {
"url": "https://github.com/tabkram/execution-engine/issues"
},
"homepage": "https://github.com/tabkram/execution-engine#readme",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/jest": "^29.5.8",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"uuid": "^9.0.1"
}
}