package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "angular-morph",
  3. "version": "0.0.1",
  4. "description": "This directive is an attempt at packaging necessary transitions and properties that enable the reuse of visual elements through morphing.",
  5. "main": "src/app.js",
  6. "scripts": {
  7. "test": "./node_modules/karma/bin/karma start karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=PhantomJS"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jimobrien/ngMorph.git"
  12. },
  13. "keywords": [
  14. "angular",
  15. "transition",
  16. "animation"
  17. ],
  18. "author": "Jim O'Brien",
  19. "license": "MIT",
  20. "bugs": {
  21. "url": "https://github.com/jimobrien/ngMorph/issues"
  22. },
  23. "devDependencies": {
  24. "gulp": "~3.8.7",
  25. "gulp-concat": "~2.3.4",
  26. "gulp-uglify": "~1.0.0",
  27. "gulp-notify": "~1.5.0",
  28. "karma-jasmine": "~0.1.5",
  29. "mocha": "~1.21.4",
  30. "karma": "~0.12.23",
  31. "karma-coverage": "~0.2.6",
  32. "karma-chrome-launcher": "~0.1.4",
  33. "karma-phantomjs-launcher": "~0.1.4",
  34. "expect.js": "~0.3.1"
  35. }
  36. }