This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.21 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
{
"name": "@vangware/cron",
"description": "⏲️ Cron Quartz and Cron UNIX expression parser",
"version": "5.1.37",
"author": {
"email": "hello@vangware.com",
"name": "Vangware",
"url": "https://vangware.com"
},
"bugs": {
"email": "issues@vangware.com",
"url": "https://github.com/vangware/cron/issues"
},
"dependencies": {
"@vangware/iterables": "^3.1.16",
"@vangware/parsers": "^1.4.10",
"@vangware/predicates": "^2.1.31",
"@vangware/types": "^6.2.7"
},
"devDependencies": {
"@types/node": "20.6.0",
"@vangware/configs": "^6.1.1",
"@vangware/test": "^10.3.24",
"c8": "^8.0.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-ban": "^1.6.0",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"simple-git-hooks": "^2.9.0",
"tsx": "^3.12.10",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
},
"files": [
"dist"
],
"homepage": "https://cron.vangware.com",
"keywords": [
"cron",
"deno",
"parse",
"parser",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vangware/cron.git"
},
"scripts": {
"clean": "rimraf ./dist",
"compile": "tsc --project tsconfig.dist.json",
"lint": "eslint {src,tests}/**/*.ts",
"lint:fix": "eslint {src,tests}/**/*.ts --fix",
"pre-compile": "tsc --noemit --project tsconfig.dist.json",
"prepare": "simple-git-hooks",
"prepublishOnly": "run-s --print-label compile prettify",
"prettify": "prettier --ignore-path=.prettierignore --log-level=warn --write './dist/**/*.{js,ts}'",
"test": "NODE_OPTIONS='--loader tsx --no-warnings' c8 test"
},
"sideEffects": false,
"simple-git-hooks": {
"pre-push": "$(pwd)/node_modules/.bin/run-s --print-label clean pre-compile lint test"
},
"source": "./src/index.ts",
"type": "module",
"types": "./dist/index.d.ts"
}