-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "@paulsmith/cronmatch",
"version": "1.1.3",
"description": "A simple cron expression parser. Compares a given date to a cron expression to see if it matches. BYOT(imer).",
"author": "Paul Smith <paul@paulsmith.io> (http://paulsmith.io/)",
"license": "MIT",
"source": "src/index.js",
"main": "dist/cronmatch.js",
"module": "dist/cronmatch.mjs",
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/blinkylights23/cronmatch"
},
"keywords": [
"cron",
"crontab",
"cron-expression",
"cron-expression-parser"
],
"bugs": {
"url": "https://github.com/blinkylights23/cronmatch/issues"
},
"homepage": "https://github.com/blinkylights23/cronmatch",
"scripts": {
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:esm": "parcel build src/index.js --dist-dir dist --target module",
"build:cjs": "parcel build src/index.js --dist-dir dist --target main",
"test": "jest --coverage --verbose"
},
"devDependencies": {
"@babel/core": "^7.22.6",
"@babel/eslint-parser": "^7.22.7",
"@babel/eslint-plugin": "^7.22.5",
"@babel/preset-env": "^7.22.6",
"babel-jest": "^29.6.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.0",
"npm-run-all": "^4.0.2",
"parcel": "^2.9.3",
"prettier": "^3.0.0",
"rimraf": "^5.0.1"
},
"engines": {}
}