package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "animate.css",
  3. "version": "3.7.2",
  4. "main": "animate.css",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/daneden/animate.css.git"
  8. },
  9. "author": {
  10. "name": "Daniel Eden"
  11. },
  12. "homepage": "https://daneden.github.io/animate.css/",
  13. "license": "MIT",
  14. "style": "./animate.css",
  15. "jspm": {
  16. "main": "animate.css!",
  17. "format": "global",
  18. "directories": {
  19. "lib": "./"
  20. }
  21. },
  22. "devDependencies": {
  23. "autoprefixer": "^9.0.1",
  24. "cssnano": "^4.0.3",
  25. "eslint": "^5.2.0",
  26. "gulp": "^4.0.0",
  27. "gulp-concat": "^2.6.1",
  28. "gulp-header": "^2.0.1",
  29. "gulp-postcss": "^8.0.0",
  30. "gulp-rename": "^1.2.2",
  31. "gulp-util": "^3.0.8",
  32. "husky": "^1.2.0",
  33. "lint-staged": "^8.1.0",
  34. "prettier": "^1.10.2",
  35. "run-sequence": "^2.2.1"
  36. },
  37. "lint-staged": {
  38. "*.{js,json,md,css}": [
  39. "prettier --write",
  40. "git add"
  41. ]
  42. },
  43. "prettier": {
  44. "bracketSpacing": false,
  45. "proseWrap": "never",
  46. "singleQuote": true,
  47. "trailingComma": "all"
  48. },
  49. "scripts": {
  50. "gulp": "./node_modules/gulp/bin/gulp.js",
  51. "start": "gulp",
  52. "prettier": "prettier --write \"**/*.{js,json,md,css}\"",
  53. "precommit": "lint-staged"
  54. },
  55. "spm": {
  56. "main": "./animate.css"
  57. }
  58. }