-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.88 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
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
{
"name": "deflow",
"version": "0.6.4",
"description": "Deflow is a decentralized job workflow manager backed on Redis",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"np": {
"yarn": false,
"contents": "dist"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Fabiencdp/Deflow"
},
"scripts": {
"build": "rm -rf dist && tsc --project ./",
"prepublish": "npm run build",
"prepare": "npm run build",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"prettier:check": "npx prettier --check src",
"prettier:write": "npx prettier --write src",
"jest": "npx jest",
"jest-clear-cache": "npx jest --clear-cache",
"test": "npm run build && npm run jest -- --detectOpenHandles --runInBand",
"test:watch": "npm run test -- --collectCoverage=false --watch",
"listener": "LISTENER=1 nodemon --inspect=9228 -w src examples/listener/index.ts",
"listener:raw": "LISTENER=1 node src examples/listener/index.ts",
"example:simple": "nodemon --inspect -w src examples/simple/index.ts",
"example:tree": "nodemon --inspect -w src examples/tree/index.ts",
"example:multi": "nodemon --inspect -w src examples/multi/index.ts",
"example:ordered": "nodemon --inspect -w src examples/ordered/index.ts",
"validate-branch-name": "validate-branch-name",
"gen-api-toc": "npx markdown-toc -i ./docs/api.md"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": false,
"execMap": {
"ts": "node --require ts-node/register"
},
"watch": [
"src/",
"examples/"
],
"ext": "js,json,ts",
"signal": "SIGINT"
},
"keywords": [
"workflow",
"job",
"flow",
"redis",
"automation",
"etl"
],
"author": "fabiencdp",
"license": "WTFPL",
"dependencies": {
"redis": "^3.1.2",
"short-uuid": "^4.2.0",
"slugify": "^1.6.0"
},
"validate-branch-name": {
"pattern": "^(feature|fix|hotfix|release|doc)/.+$",
"errorMsg": "Your name branch is incorrect, she must begin by feature/, fix/, hotfix/ or release/"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.4",
"@types/redis": "^2.8.32",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.1",
"redis-mock": "^0.56.3",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"validate-branch-name": "^1.0.6",
"np": "^11.0.2"
}
}