{
  "name": "expo-jwt",
  "version": "1.8.2",
  "description": "Generate and decode JWT inside of an React Native Expo app",
  "main": "dist/lib/index.js",
  "types": "dist/lib/index.d.ts",
  "author": "Blake Simpson <hi@blakesimpson.solutions>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/blake-simpson/expo-jwt.git"
  },
  "keywords": [
    "expo",
    "jwt",
    "react-native"
  ],
  "files": [
    "dist"
  ],
  "dependencies": {
    "crypto-js": "^4.2.0"
  },
  "scripts": {
    "compile": "npx tsc",
    "build": "rm -rf dist && npm run compile",
    "prepublish": "npm run sanity && npm run build",
    "sanity": "npm run compile && npm test",
    "test": "npx jest",
    "test:watch": "npx jest --watchAll",
    "test:coverage": "npx jest --coverage"
  },
  "devDependencies": {
    "@types/crypto-js": "^4.0.1",
    "@types/jest": "^26.0.15",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.4",
    "typescript": "^4.9.5"
  }
}
