-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "simplejob",
"version": "0.3.5",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "alcaroff",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alcaroff/simplejob"
},
"scripts": {
"prepublish": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "yarn tsc"
},
"keywords": [
"job",
"script",
"args",
"logs",
"report",
"cron",
"task"
],
"devDependencies": {
"@babel/preset-typescript": "^7.17.12",
"@types/jest": "^29.2.6",
"@types/lodash": "^4.14.191",
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.6.0",
"ts-jest": "^27.1.5",
"ts-node": "^10.7.0",
"typescript": "^4.5.5"
},
"dependencies": {
"axios": "^1.2.6",
"colors": "^1.4.0",
"dayjs": "^1.11.7",
"joi": "17.4.0",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"uuid": "^9.0.0"
}
}