package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "multi-ini",
  3. "version": "2.2.0",
  4. "license": "MIT",
  5. "description": "An ini-file parser which supports multi line, multiple levels and arrays to get a maximum of compatibility with Zend config files.",
  6. "main": "lib/index.js",
  7. "scripts": {
  8. "predistribute": "babel src --out-dir lib",
  9. "test": "babel-node ./node_modules/.bin/_mocha",
  10. "coverage": "babel-node ./node_modules/.bin/istanbul cover _mocha",
  11. "distribute": "npm publish"
  12. },
  13. "homepage": "https://github.com/evangelion1204/multi-ini",
  14. "author": {
  15. "name": "Michael Iwersen",
  16. "email": "mi.iwersen@gmail.com"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/evangelion1204/multi-ini.git"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/evangelion1204/multi-ini/issues"
  24. },
  25. "licenses": [
  26. {
  27. "type": "MIT",
  28. "url": "https://github.com/evangelion1204/multi-ini/blob/master/LICENSE"
  29. }
  30. ],
  31. "keywords": [
  32. "ini",
  33. "zend",
  34. "config",
  35. "multi-line",
  36. "multi-level"
  37. ],
  38. "devDependencies": {
  39. "babel-cli": "^6.3.17",
  40. "babel-plugin-check-es2015-constants": "^6.3.13",
  41. "babel-plugin-transform-es2015-arrow-functions": "^6.4.0",
  42. "babel-plugin-transform-es2015-block-scoping": "^6.3.13",
  43. "babel-plugin-transform-es2015-classes": "^6.3.15",
  44. "babel-plugin-transform-es2015-destructuring": "^6.18.0",
  45. "babel-plugin-transform-es2015-for-of": "^6.18.0",
  46. "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16",
  47. "babel-plugin-transform-es2015-parameters": "^6.3.26",
  48. "babel-plugin-transform-es2015-shorthand-properties": "^6.18.0",
  49. "babel-plugin-transform-es2015-template-literals": "^6.3.13",
  50. "babel-plugin-transform-object-assign": "^6.8.0",
  51. "babel-plugin-transform-object-rest-spread": "^6.19.0",
  52. "babel-register": "^6.18.0",
  53. "benchmark": "^2.0.0",
  54. "chai": "^3.4.1",
  55. "istanbul": "^1.1.0-alpha.1",
  56. "mocha": "^5.2.0",
  57. "sinon": "^1.17.2",
  58. "sinon-chai": "^2.8.0"
  59. },
  60. "dependencies": {
  61. "lodash": "^4.0.0"
  62. }
  63. }