alvarocastro/diamondbot

View on GitHub
commands/fact/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@diamondbot/fact-command",
  "version": "1.0.0",
  "description": "DiamondBot command that gets a random useless fact about something",
  "main": "dist/index.js",
  "files": [
    "dist"
  ],
  "scripts": {
    "bump:patch": "npm version patch --no-git-tag-version",
    "bump:minor": "npm version minor --no-git-tag-version",
    "bump:major": "npm version major --no-git-tag-version",
    "postversion": "npm publish --access public",
    "prepare": "npm run build",
    "build": "babel src -d dist",
    "build:watch": "babel src -d dist --watch"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alvarocastro/diamondbot.git"
  },
  "keywords": [
    "diamondbot",
    "diamondbot command",
    "discord",
    "command",
    "facts",
    "fact",
    "info",
    "random"
  ],
  "author": "Alvaro Castro",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/alvarocastro/diamondbot/issues"
  },
  "homepage": "https://github.com/alvarocastro/diamondbot/commands/fact#readme",
  "devDependencies": {
    "@babel/cli": "^7.12.13",
    "@babel/core": "^7.12.13",
    "@babel/plugin-proposal-class-properties": "^7.12.13",
    "@babel/preset-env": "^7.12.13"
  },
  "dependencies": {
    "@diamondbot/core": "^0.1.2",
    "node-fetch": "^2.6.1"
  }
}