package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "phin",
  3. "version": "2.9.3",
  4. "description": "Ultra-simple, lightweight, dependency-free Node.JS HTTP request client",
  5. "main": "lib/phin.compiled.js",
  6. "scripts": {
  7. "test": "echo \"Tested before deployment.\" && exit 0",
  8. "test-dev": "node ./tests/test.js",
  9. "prepublishOnly": "npm run test-dev",
  10. "gendocs": "rm -r docs || true && jsdoc -R README.md -d ./docs lib/phin.js",
  11. "build": "npx babel lib/phin.js --out-file lib/phin.compiled.js --presets env --minified --no-comments"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/ethanent/phin.git"
  16. },
  17. "keywords": [
  18. "http",
  19. "https",
  20. "request",
  21. "fetch",
  22. "ajax",
  23. "url",
  24. "uri"
  25. ],
  26. "author": "Ethan Davis",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/ethanent/phin/issues"
  30. },
  31. "homepage": "https://github.com/ethanent/phin#readme",
  32. "devDependencies": {
  33. "babel-cli": "^6.26.0",
  34. "babel-preset-env": "^1.6.1",
  35. "whew": "^1.0.0"
  36. },
  37. "files": [
  38. "lib/phin.compiled.js",
  39. "LICENSE"
  40. ]
  41. }