forked from antonsamper/hapi-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.14 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": "@speechportal/cron",
"version": "0.0.1",
"description": "Fork of hapi-cron: A Hapi plugin to setup cron jobs that will call predefined server routes at specified times",
"main": "./dist/index",
"types": "./dist/index",
"scripts": {
"build": "tsc -p tsconfig.build.json && prettier --write \"dist/**/*{.d.ts,.js}\"",
"clear": "npx rimraf ./dist && npx rimraf ./tsconfig.tsbuildinfo",
"clear:all": "npx rimraf ./dist && npx rimraf ./.nyc_output && npx rimraf ./coverage && npx rimraf ./node_modules && npx rimraf ./tsconfig.tsbuildinfo",
"clear:build": "npx rimraf ./dist",
"clear:modules": "npx rimraf ./node_modules",
"clear:tests": "npx rimraf ./.nyc_output && npx rimraf ./coverage",
"lint": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"prepack": "npm run build",
"prettier:format": "prettier 'src/**/*.ts' --write",
"prettier:watch": "onchange 'src/**/*.ts' -- prettier --write {{changed}}",
"test": "jest -c jest.unit.config.ts --runInBand --no-cache --forceExit --colors --passWithNoTests",
"test:integration": "jest -c jest.integration.config.ts --runInBand --no-cache --forceExit --colors --passWithNoTests",
"test:unit:coverage": "jest --runInBand --no-cache --forceExit --passWithNoTests --colors --silent --coverage -c jest.unit.config.js",
"test:integration:coverage": "jest --runInBand --no-cache --forceExit --colors --coverage -c jest.integration.config.js",
"watch": "npx tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antonsamper/hapi-cron.git"
},
"keywords": [
"hapi",
"plugin",
"cron"
],
"author": "Anton Samper Rivaya",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/antonsamper/hapi-cron/issues"
},
"homepage": "https://github.com/antonsamper/hapi-cron#readme",
"dependencies": {
"@hapi/hoek": "^7.2.0",
"chalk": "^4.1.2",
"cron": "^1.7.1",
"cron-parser": "^4.6.0",
"easy-table": "^1.2.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/hapi__hapi": "^20.0.1",
"@hapi/hapi": "^20.2.1",
"@types/node": "^16.11.1",
"jest": "^26.4.2"
}
}