Нет описания

package.json 682B

123456789101112131415161718192021222324252627282930
  1. {
  2. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  3. "name": "ini",
  4. "description": "An ini encoder/decoder for node",
  5. "version": "1.3.5",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/isaacs/ini.git"
  9. },
  10. "main": "ini.js",
  11. "scripts": {
  12. "pretest": "standard ini.js",
  13. "test": "tap test/*.js --100 -J",
  14. "preversion": "npm test",
  15. "postversion": "npm publish",
  16. "postpublish": "git push origin --all; git push origin --tags"
  17. },
  18. "engines": {
  19. "node": "*"
  20. },
  21. "dependencies": {},
  22. "devDependencies": {
  23. "standard": "^10.0.3",
  24. "tap": "^10.7.3 || 11"
  25. },
  26. "license": "ISC",
  27. "files": [
  28. "ini.js"
  29. ]
  30. }