UNPKG

ej-data

Version:

Utility functions for analyzing and evaluating the EuroJackpot numbers

88 lines (87 loc) 2.49 kB
{ "name": "ej-data", "version": "1.2.1", "license": "MIT", "main": "lib/index.js", "types": "lib/index.d.ts", "description": "Utility functions for analyzing and evaluating the EuroJackpot numbers", "keywords": [ "EuroJackpot" ], "scripts": { "clean": "rimraf ./lib", "data": "node ./data/processor/data-processor.js", "start": "npm run clean && npm run data && ts-node src/index.ts", "build": "npm run clean && npm run data && tsc", "format": "prettier --write .", "lint": "eslint '*/**/*.{js,jsx,ts,tsx}' --fix", "test": "npm run data && jest", "test:watch": "jest --watch" }, "dependencies": {}, "devDependencies": { "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "@semantic-release/changelog": "^5.0.1", "@semantic-release/commit-analyzer": "^8.0.1", "@semantic-release/git": "^9.0.0", "@semantic-release/npm": "^7.0.8", "@semantic-release/release-notes-generator": "^9.0.1", "@types/jest": "^26.0.15", "@types/lodash": "^4.14.163", "@typescript-eslint/eslint-plugin": "^4.8.1", "@typescript-eslint/parser": "^4.8.1", "app-root-path": "^3.0.0", "convert-csv-to-json": "^1.3.3", "dayjs": "^1.11.10", "eslint": "^7.14.0", "eslint-config-prettier": "^6.15.0", "eslint-config-standard": "^16.0.2", "eslint-plugin-import": "^2.22.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^3.1.4", "eslint-plugin-promise": "^4.2.1", "husky": "^4.3.0", "jest": "^26.6.3", "lint-staged": "^10.5.1", "lodash": "^4.17.20", "prettier": "^2.2.0", "semantic-release": "^17.2.3", "ts-jest": "^26.4.4", "ts-node": "^9.0.0", "typescript": "^4.1.2", "rimraf": "^5.0.5" }, "release": { "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/npm", "@semantic-release/changelog", "@semantic-release/git" ], "branches": "main" }, "prettier": { "trailingComma": "all", "semi": true, "singleQuote": true, "printWidth": 100, "proseWrap": "always", "tabWidth": 2 }, "lint-staged": { "*.{js,jsx,ts,tsx,md,html,css}": "prettier --write", "*.{js,jsx,ts,tsx}": "eslint --fix" }, "husky": { "hooks": { "pre-commit": "lint-staged && yarn test" } }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] } }