forked from JossyDevers/cron-expression-input
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "cron-input-ui",
"version": "2.0.0",
"description": "Input component to generate cron expressions easily and intuitively",
"main": "lib/cron-input-ui.min.js",
"files": [
"dist/*",
"dist/locales/*"
],
"exports": {
".": "./dist/",
"./locales": "./dist/locales/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QuentiumYT/CronInputUI.git"
},
"author": "Jossy Devers <[email protected]>",
"contributors": [
"Quentin Lienhardt <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/QuentiumYT/CronInputUI/issues"
},
"homepage": "https://github.com/QuentiumYT/CronInputUI#readme",
"keywords": [
"cron",
"crontab",
"validate",
"expression",
"crontab guru",
"ui",
"editor",
"generator",
"unix"
],
"scripts": {
"start": "webpack serve",
"build": "webpack --config webpack.config.js",
"release": "NODE_ENV=production webpack --config webpack.config.js"
},
"dependencies": {
"cron-validator": "^1.3.1",
"cronstrue": "^2.11.0"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"source-map-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}