-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.13 KB
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
{
"name": "@codeinkit/flows",
"version": "3.1.2",
"description": "Flows is a library that aim to make writing code concept flow based.",
"repository": {
"url": "https://github.com/CodeInKit/flows"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"coverage": "jest --coverage",
"prepublish": "tsc"
},
"keywords": [
"flow",
"workflow",
"flows",
"flow based programming",
"workflow framework",
"fbp"
],
"author": {
"name": "codinkit dev team",
"email": "dev@codinkit.com"
},
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^27.4.1",
"@types/node": "^12.19.3",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^30.0.5",
"prettier": "^2.5.1",
"ts-jest": "^29.4.0",
"typescript": "^4.9.5"
},
"dependencies": {
"debug": "^4.4.1"
}
}