-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "declarative-based-flow",
"version": "0.0.14",
"description": "A powerful and intuitive package designed to simplify the construction of complex, structured workflows using a declarative and fluent syntax.",
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"test:coverage": "jest --verbose --collectCoverage",
"build": "rm -Rf lib && tsc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"keywords": [
"declarative",
"flow"
],
"contributors": [
{
"email": "rafaeliunes97@gmail.com",
"name": "Rafael Iunes"
}
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:iagocalazans/declarative-based-flow.git"
},
"bugs": {
"url": "https://github.com/iagocalazans/declarative-based-flow/issues"
},
"author": "Iago Calazans <iago.calazans@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.6.0",
"winston": "^3.11.0"
}
}