package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "stylus-loader",
  3. "version": "3.0.2",
  4. "description": "Stylus loader for webpack",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "lib/"
  9. ],
  10. "scripts": {
  11. "test": "testem ci",
  12. "test-dev": "testem -l firefox",
  13. "test-one": "testem ci -l firefox",
  14. "test-build": "webpack --config test/webpack.config.js --output-path=test/tmp --output-filename=bundle.js"
  15. },
  16. "author": "Kyle Robinson Young <kyle@dontkry.com> (http://dontkry.com)",
  17. "license": "MIT",
  18. "repository": {
  19. "type": "git",
  20. "url": "git@github.com:shama/stylus-loader.git"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/shama/stylus-loader/issues"
  24. },
  25. "dependencies": {
  26. "loader-utils": "^1.0.2",
  27. "lodash.clonedeep": "^4.5.0",
  28. "when": "~3.6.x"
  29. },
  30. "devDependencies": {
  31. "benchmark": "^1.0.0",
  32. "css-loader": "^0.14.0",
  33. "mocha": "~2.1.0",
  34. "mocha-loader": "^1.0.0",
  35. "nib": "^1.0.4",
  36. "node-libs-browser": "^0.5.2",
  37. "raw-loader": "~0.5.1",
  38. "should": "~4.6.1",
  39. "style-loader": "^0.12.2",
  40. "stylus": ">=0.52.4",
  41. "testem": "^0.8.3",
  42. "webpack": "^2.2.0",
  43. "webpack-dev-server": "^2.0.0"
  44. },
  45. "peerDependencies": {
  46. "stylus": ">=0.52.4"
  47. },
  48. "keywords": [
  49. "webpack",
  50. "loader",
  51. "stylus"
  52. ]
  53. }