package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "angular-formly-templates-bootstrap",
  3. "version": "6.0.0",
  4. "author": "Astrism <astrisms@gmail.com>",
  5. "contributors": [
  6. "Astrism <astrisms@gmail.com>",
  7. "Kent C. Dodds <kent@doddsfamily.us>"
  8. ],
  9. "homepage": "http://formly-js.github.io/angular-formly-templates-bootstrap/",
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/formly-js/angular-formly-templates-bootstrap.git"
  13. },
  14. "main": "dist/angular-formly-templates-bootstrap.js",
  15. "licenses": [
  16. {
  17. "type": "MIT",
  18. "url": "https://raw.githubusercontent.com/formly-js/angular-formly-templates-bootstrap/master/LICENSE"
  19. }
  20. ],
  21. "scripts": {
  22. "build:dist": "webpack",
  23. "build:minify": "webpack --config webpack.config.minify.js",
  24. "build": "npm run build:dist; npm run build:minify",
  25. "test": "karma start karma.conf.js",
  26. "test:single": "karma start karma.conf.js --single-run",
  27. "test:ci": "karma start karma.conf.ci.js",
  28. "watch": "webpack --watch",
  29. "start": "npm run watch & npm run test",
  30. "release": "npm run build && with-package git commit -am pkg.version && with-package git tag pkg.version && git push && npm publish && git push --tags",
  31. "release:beta": "npm run release && npm run tag:beta",
  32. "tag:beta": "with-package npm dist-tag add pkg.name@pkg.version beta"
  33. },
  34. "description": "Angular-Formly plugin which outputs bootstrap compatible form fields.",
  35. "peerDependencies": {
  36. "angular": "^1.2.x || >= 1.4.0-beta.0 || >= 1.5.0-beta.0",
  37. "angular-formly": ">=6.20.0",
  38. "api-check": ">=7.5.0",
  39. "bootstrap": "^3.2.0"
  40. },
  41. "devDependencies": {
  42. "babel-core": "^5.4.3",
  43. "babel-loader": "^5.1.2",
  44. "deep-extend": "^0.3.2",
  45. "jshint": "^2.7.0",
  46. "jshint-loader": "^0.8.3",
  47. "lodash-node": "^3.8.0",
  48. "ng-annotate": "^0.15.4",
  49. "ng-annotate-loader": "0.0.2",
  50. "node-libs-browser": "^0.5.0",
  51. "raw-loader": "^0.5.1",
  52. "webpack": "^1.9.6",
  53. "with-package": "0.2.0"
  54. }
  55. }