12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- {
- "name": "cron-parser",
- "version": "4.9.0",
- "description": "Node.js library for parsing crontab instructions",
- "main": "lib/parser.js",
- "types": "types/index.d.ts",
- "typesVersions": {
- "<4.1": {
- "*": [
- "types/ts3/*"
- ]
- }
- },
- "directories": {
- "test": "test"
- },
- "scripts": {
- "test:tsd": "tsd",
- "test:unit": "TZ=UTC tap ./test/*.js",
- "test:cover": "TZ=UTC tap --coverage-report=html ./test/*.js",
- "lint": "eslint .",
- "lint:fix": "eslint --fix .",
- "test": "npm run lint && npm run test:unit && npm run test:tsd"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/harrisiirak/cron-parser.git"
- },
- "keywords": [
- "cron",
- "crontab",
- "parser"
- ],
- "author": "Harri Siirak",
- "contributors": [
- "Nicholas Clawson",
- "Daniel Prentis <daniel@salsitasoft.com>",
- "Renault John Lecoultre",
- "Richard Astbury <richard.astbury@gmail.com>",
- "Meaglin Wasabi <Meaglin.wasabi@gmail.com>",
- "Mike Kusold <hello@mikekusold.com>",
- "Alex Kit <alex.kit@atmajs.com>",
- "Santiago Gimeno <santiago.gimeno@gmail.com>",
- "Daniel <darc.tec@gmail.com>",
- "Christian Steininger <christian.steininger.cs@gmail.com>",
- "Mykola Piskovyi <m.piskovyi@gmail.com>",
- "Brian Vaughn <brian.david.vaughn@gmail.com>",
- "Nicholas Clawson <nickclaw@gmail.com>",
- "Yasuhiroki <yasuhiroki.duck@gmail.com>",
- "Nicholas Clawson <nickclaw@gmail.com>",
- "Brendan Warkentin <faazshift@gmail.com>",
- "Charlie Fish <fishcharlie.code@gmail.com>",
- "Ian Graves <ian+diskimage@iangrav.es>",
- "Andy Thompson <me@andytson.com>",
- "Regev Brody <regevbr@gmail.com>"
- ],
- "license": "MIT",
- "dependencies": {
- "luxon": "^3.2.1"
- },
- "devDependencies": {
- "eslint": "^8.27.0",
- "sinon": "^15.0.1",
- "tap": "^16.3.3",
- "tsd": "^0.26.0"
- },
- "engines": {
- "node": ">=12.0.0"
- },
- "browser": {
- "fs": false
- },
- "tap": {
- "check-coverage": false
- },
- "tsd": {
- "directory": "test",
- "compilerOptions": {
- "lib": [
- "es2017",
- "dom"
- ]
- }
- },
- "files": [
- "lib",
- "types",
- "LICENSE",
- "README.md"
- ]
- }
|