-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 1.86 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
{
"name": "@cheap-glitch/mi-cron",
"version": "1.0.1",
"description": "A microscopic parser for standard cron expressions.",
"license": "ISC",
"author": "cheap glitch <cheap.glitch@gmail.com> (https://github.com/cheap-glitch)",
"repository": "cheap-glitch/mi-cron",
"homepage": "https://github.com/cheap-glitch/mi-cron#readme",
"bugs": "https://github.com/cheap-glitch/mi-cron/issues",
"funding": "https://github.com/sponsors/cheap-glitch",
"keywords": [
"cron",
"crontab",
"crontable",
"date",
"day",
"hour",
"hours",
"lightweight",
"micro",
"minutes",
"month",
"parser",
"schedule",
"scheduling",
"small",
"tiny",
"week",
"weekday"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"build:clean": "empty-dir dist && npm run build",
"build:watch": "tsc --watch",
"coverage": "npm test -- --collectCoverage",
"coverage:upload": "coveralls < .coverage/lcov.info",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"test": "jest --runInBand",
"test:watch": "npm test -- --watch"
},
"eslintConfig": {
"root": true,
"extends": "@cheap-glitch/typescript",
"env": {
"es6": true
}
},
"jest": {
"preset": "ts-jest",
"coverageDirectory": ".coverage"
},
"devDependencies": {
"@cheap-glitch/eslint-config-typescript": "^2.2.0",
"@cheap-glitch/tsconfig": "^1.0.0",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"empty-dir-cli": "^1.0.2",
"eslint": "^8.6.0",
"eslint-plugin-smarter-tabs": "^1.2.0",
"jest": "^27.4.7",
"terser": "^5.10.0",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}