You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "get-package-info",
  3. "description": "Gets properties from package.json files in parent directories.",
  4. "version": "1.0.0",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "author": "Rahat Ahmed",
  8. "repository": "https://github.com/rahatarmanahmed/get-package-info",
  9. "scripts": {
  10. "lint": "standard",
  11. "test": "mocha --compilers js:babel-register,es6:babel-register,es6.js:babel-register test/",
  12. "build": "babel -d lib/ src/",
  13. "pretest": "npm run lint",
  14. "prebuild": "npm run test",
  15. "watch": "onchange src/ -- npm run build && echo Done",
  16. "dev": "npm run watch",
  17. "prepublish": "npm run build"
  18. },
  19. "devDependencies": {
  20. "babel-cli": "^6.4.0",
  21. "babel-preset-es2015": "^6.3.13",
  22. "babel-register": "^6.4.3",
  23. "chai": "^3.4.1",
  24. "mocha": "^3.0.0",
  25. "onchange": "^3.0.0",
  26. "standard": "^8.4.0"
  27. },
  28. "dependencies": {
  29. "bluebird": "^3.1.1",
  30. "debug": "^2.2.0",
  31. "lodash.get": "^4.0.0",
  32. "read-pkg-up": "^2.0.0"
  33. },
  34. "engines": {
  35. "node": ">= 4.0"
  36. }
  37. }