-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.25 KB
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
{
"name": "cron-expression-input",
"version": "1.2.7",
"description": "Cron UI: input component to generate cron expressions easily and intuitively",
"main": "lib/cron-expression-input.min.js",
"files": [
"lib/*"
],
"exports": {
"./": "./lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JossyDevers/cron-expression-input.git"
},
"author": "Jossy Devers <jossydevers@gmail.com> (https://github.com/JossyDevers)",
"license": "MIT",
"bugs": {
"url": "https://github.com/JossyDevers/cron-expression-input/issues"
},
"homepage": "https://github.com/JossyDevers/cron-expression-input#readme",
"keywords": [
"cron",
"crontab",
"validate",
"expression",
"crontab guru",
"ui",
"editor",
"generator",
"unix"
],
"scripts": {
"start": "webpack serve",
"build": "webpack --config webpack.config.js"
},
"dependencies": {
"cron-validator": "^1.2.1",
"cronstrue": "^1.113.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"babel-loader": "^8.2.2",
"html-webpack-plugin": "^4.5.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}