forked from Airfooox/cron-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.92 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
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
100
101
102
103
104
105
106
107
{
"name": "lobaro-cron-validate",
"version": "1.1.0",
"description": "lobaro modified cron-validate is a cron-expression validator written in TypeScript.",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix",
"prettier": "prettier --write src/**/*.ts",
"tsc-check": "tsc --project ./tsconfig.json --noEmit",
"release": "npm run build && env-cmd npx semantic-release --branches master --no-ci",
"release-next": "npm run build && env-cmd npx semantic-release --branches next --no-ci",
"release-next-major": "npm run build && env-cmd npx semantic-release --branches next-major --no-ci",
"test": "jest --coverage",
"test:watch": "jest --watchAll --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/lobaro/lobaro-cron-validate.git"
},
"author": "Konstantin L. 'Airfox' Zisiadis",
"license": "MIT",
"bugs": {
"url": "https://github.com/lobaro/lobaro-cron-validate/issues"
},
"homepage": "https://github.com/lobaro/lobaro-cron-validate.git",
"keywords": [
"cron-validator",
"cron-validation",
"validation",
"cron",
"cron-expression",
"typescript"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"release": {
"ci": false,
"branches": [
"master",
{
"name": "next",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"npmPublish": true,
"pkgRoot": "."
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
],
"message": "chore(${branch.name}): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/jest": "26.0.22",
"@types/node": "13.13.46",
"@types/yup": "0.29.11",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"env-cmd": "10.1.0",
"eslint": "7.23.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"jest": "26.6.3",
"nodemon": "2.0.7",
"prettier": "2.2.1",
"semantic-release": "17.4.2",
"ts-jest": "26.5.3",
"ts-node": "9.1.1",
"typescript": "4.2.3"
},
"dependencies": {
"yup": "0.32.9"
}
}