package.json 530 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "@mightyplow/jslib",
  3. "version": "0.2.0",
  4. "description": "js, helpers library",
  5. "main": "jslib.js",
  6. "dependencies": {
  7. "nodeunit": "^0.10.2"
  8. },
  9. "devDependencies": {},
  10. "scripts": {
  11. "nodeunit": "nodeunit",
  12. "test": "nodeunit tests"
  13. },
  14. "files": [
  15. "lib",
  16. "jslib.js"
  17. ],
  18. "keywords": [
  19. "js",
  20. "javascript",
  21. "helpers",
  22. "library"
  23. ],
  24. "author": {
  25. "name": "mightyplow",
  26. "email": "mightyplow@gmail.com",
  27. "url": "http://mightyplow.net"
  28. },
  29. "license": "ISC"
  30. }