package.json 790 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "loader-utils",
  3. "version": "0.2.17",
  4. "author": "Tobias Koppers @sokra",
  5. "description": "utils for webpack loaders",
  6. "dependencies": {
  7. "big.js": "^3.1.3",
  8. "emojis-list": "^2.0.0",
  9. "json5": "^0.5.0",
  10. "object-assign": "^4.0.1"
  11. },
  12. "scripts": {
  13. "test": "mocha",
  14. "travis": "npm run cover -- --report lcovonly",
  15. "cover": "istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha",
  16. "publish-patch": "mocha && npm version patch && git push && git push --tags && npm publish"
  17. },
  18. "license": "MIT",
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/webpack/loader-utils.git"
  22. },
  23. "devDependencies": {
  24. "coveralls": "^2.11.2",
  25. "istanbul": "^0.3.14",
  26. "mocha": "^1.21.4"
  27. },
  28. "files": [
  29. "index.js"
  30. ]
  31. }