package.json 724 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "vlq",
  3. "description": "Generate, and decode, base64 VLQ mappings for source maps and other uses",
  4. "author": "Rich Harris",
  5. "repository": "https://github.com/Rich-Harris/vlq",
  6. "license": "MIT",
  7. "version": "1.0.1",
  8. "main": "dist/vlq.js",
  9. "module": "dist/vlq.es.js",
  10. "types": "dist/types/vlq.d.ts",
  11. "files": [
  12. "README.md",
  13. "LICENSE",
  14. "dist/*.js",
  15. "dist/**/*.d.ts"
  16. ],
  17. "devDependencies": {
  18. "eslint": "^6.0.1",
  19. "rollup": "^1.16.4",
  20. "rollup-plugin-typescript": "^1.0.1",
  21. "typescript": "^3.5.2"
  22. },
  23. "scripts": {
  24. "build": "rollup -c && tsc",
  25. "lint": "eslint src",
  26. "test": "node test",
  27. "pretest": "npm run build",
  28. "prepublish": "npm test"
  29. }
  30. }