{
  "name": "@ymchun/ics",
  "version": "0.0.1-alpha.18",
  "description": "A ics file parser and generator based on RFC-5545",
  "homepage": "github:ymchun/ics",
  "author": "Jean M.C.",
  "license": "MIT",
  "main": "index.js",
  "private": false,
  "scripts": {
    "build": "rm -rf dist && ttsc && npm run compile-nearley-prod",
    "compile-nearley-prod": "mkdir -p ./dist/nearley/ && nearleyc ./src/nearley/grammar.ne -o ./dist/nearley/grammar.js",
    "compile-nearley": "nearleyc ./src/nearley/grammar.ne -o ./src/nearley/grammar.js",
    "coveralls": "cat ./coverage/lcov.info | coveralls",
    "lint": "eslint src/**/*.ts",
    "snyk-protect": "snyk protect",
    "snyk-test": "snyk test",
    "spell:check": "cspell 'src/**/*.ts'",
    "start": "ts-node -r tsconfig-paths/register --files src/dev.ts",
    "test": "jest --no-cache --coverage --detectOpenHandles"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ymchun/ics.git"
  },
  "keywords": [
    "ics",
    "parser",
    "generator"
  ],
  "bugs": {
    "url": "https://github.com/ymchun/ics/issues"
  },
  "devDependencies": {
    "@types/jest": "^27.0.3",
    "@types/nearley": "^2.11.2",
    "@types/node": "^16.11.10",
    "@typescript-eslint/eslint-plugin": "^5.4.0",
    "@typescript-eslint/parser": "^5.4.0",
    "coveralls": "^3.1.1",
    "cspell": "^5.13.1",
    "eslint": "^8.3.0",
    "jest": "^27.4.0",
    "prettier": "^2.5.0",
    "snyk": "^1.777.0",
    "ts-jest": "^27.0.7",
    "ts-node": "^10.4.0",
    "tsconfig-paths": "^3.12.0",
    "ttypescript": "^1.5.13",
    "typescript": "^4.5.2",
    "typescript-transform-paths": "^3.3.1"
  },
  "dependencies": {
    "date-fns": "^2.26.0",
    "date-fns-tz": "^1.1.6",
    "nearley": "^2.20.1",
    "rrule": "2.6.8",
    "tslib": "^2.3.1"
  }
}
