theyadev/random-api

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "get-random-api",
  "version": "1.2.1",
  "description": "A simple and lightweight module to get random apis",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "start": "node lib/index.js",
    "build": "tsc",
    "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
    "lint": "tslint -p tsconfig.json",
    "test": "jest --config jestconfig.json",
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format"
  },
  "keywords": [
    "api",
    "apis",
    "random",
    "publicapis"
  ],
  "author": "theyadev",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/theyadev/random-api.git"
  },
  "files": [
    "lib/**/*"
  ],
  "dependencies": {
    "axios": "^0.24.0"
  },
  "devDependencies": {
    "@types/babel__core": "^7.1.12",
    "@types/jest": "^27.0.3",
    "jest": "^27.4.3",
    "prettier": "^2.5.1",
    "ts-jest": "^27.1.1",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^4.5.2"
  }
}