설명 없음

package.json 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "glob2base",
  3. "description": "Extracts a base path from a node-glob instance",
  4. "version": "0.0.12",
  5. "homepage": "http://github.com/wearefractal/glob2base",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/wearefractal/glob2base.git"
  9. },
  10. "author": "Fractal <contact@wearefractal.com> (http://wearefractal.com/)",
  11. "main": "./index.js",
  12. "files": [
  13. "index.js",
  14. "lib"
  15. ],
  16. "dependencies": {
  17. "find-index": "^0.1.1"
  18. },
  19. "devDependencies": {
  20. "coveralls": "^2.6.1",
  21. "istanbul": "^0.3.2",
  22. "jshint": "^2.4.1",
  23. "jshint-stylish": "^1.0.0",
  24. "mocha": "^2.0.0",
  25. "mocha-lcov-reporter": "^0.0.1",
  26. "glob": "^4.0.0",
  27. "should": "^4.0.0"
  28. },
  29. "scripts": {
  30. "lint": "jshint index.js --reporter node_modules/jshint-stylish/stylish.js --exclude node_modules",
  31. "test": "npm run-script lint && mocha --reporter spec",
  32. "coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
  33. },
  34. "engines": {
  35. "node": ">= 0.10"
  36. },
  37. "licenses": [
  38. {
  39. "type": "MIT",
  40. "url": "http://github.com/wearefractal/glob2base/raw/master/LICENSE"
  41. }
  42. ]
  43. }