@flasd/spaced-repetition
Version:
Simple spaced repetition algorithm
48 lines (47 loc) • 1.41 kB
JSON
{
"name": "@flasd/spaced-repetition",
"version": "0.1.1",
"description": "Simple spaced repetition algorithm",
"main": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"source": "src/index.ts",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && cross-env NODE_ENV=production microbundle --no-sourcemap --name SpacedRepetition && rimraf dist/index.test.d.ts",
"coverage": "cross-env NODE_ENV=test jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "tslint src/** --project tsconfig.json",
"prebuild": "yarn test && yarn lint",
"prepublishOnly": "yarn build",
"test": "cross-env NODE_ENV=test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flasd/spaced-repetition.git"
},
"keywords": [
"spaced",
"repetition",
"supermemo",
"anki",
"sr"
],
"author": "Marcel Coelho",
"license": "MIT",
"bugs": {
"url": "https://github.com/flasd/spaced-repetition/issues"
},
"homepage": "https://github.com/flasd/spaced-repetition#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"jest": "^24.7.1",
"microbundle": "^0.11.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.4"
}
}