forked from 47ng/fastify-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.59 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
66
67
68
69
70
71
{
"name": "fastify-cron",
"version": "1.1.1",
"description": "Run cron jobs alongside your Fastify server",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "François Best",
"email": "[email protected]",
"url": "https://francoisbest.com"
},
"repository": {
"type": "git",
"url": "https://github.com/47ng/fastify-cron"
},
"keywords": [
"fastify",
"fastify-plugin",
"cron"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest --verbose --detectOpenHandles --forceExit",
"test:watch": "jest --verbose --watch",
"dev": "nodemon -e ts,.env -w .env -w . -x 'run-s build:ts test'",
"build:clean": "rm -rf ./dist",
"build:ts": "tsc",
"build": "run-s build:clean build:ts",
"ci": "run-s test build"
},
"dependencies": {
"@types/cron": "^1.7.2",
"cron": "^1.8.2",
"fastify-plugin": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "^14.0.19",
"fastify": "^3.0.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-extended": "^0.11.5",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"peerDependencies": {
"fastify": "^3.0.0"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"testEnvironment": "node"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"husky": {
"hooks": {
"pre-push": "yarn ci"
}
}
}