epic-formulae
Version:
Simple data store to house epic formulae
81 lines (80 loc) • 2.02 kB
JSON
{
"name": "epic-formulae",
"version": "1.0.0",
"description": "Simple data store to house epic formulae",
"author": "Joshua Mostafa",
"bin": {
"formula": "./bin/run"
},
"homepage": "https://github.com/micapam/epic-formulae",
"license": "MIT",
"main": "dist/index.js",
"repository": "micapam/epic-formulae",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^1",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.1.0",
"csv-parse": "^5.0.4",
"csv-stringify": "^6.0.5",
"mongoose": "^6.2.4"
},
"devDependencies": {
"@oclif/test": "^2",
"@types/chai": "^4",
"@types/mocha": "^9.1.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^16.9.4",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.2",
"globby": "^11",
"mocha": "^9",
"oclif": "^2",
"shx": "^0.3.4",
"ts-node": "^10.6.0",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"oclif": {
"bin": "formula",
"dirname": "formula",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {
"add": {
"description": "Add a formula to the data store"
}
},
"hooks": {}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\" \"test/**/*.test.js\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/micapam/epic-formulae/issues",
"keywords": [
"poetics",
"literary studies",
"metrical poetry"
],
"types": "dist/index.d.ts"
}