Guest User

Untitled

a guest
Jun 18th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. {
  2. "name": "angular-component-library",
  3. "version": "0.0.0",
  4. "scripts": {
  5. "prestart": "npm install",
  6. "ng": "ng",
  7. "start": "ng serve",
  8. ...
  9. ...
  10. "build-lib": "ng build --prod ratify", // To built the library for production
  11. "npm-pack": "cd dist/ratify && npm pack", // This command is to pack the library as .tgz for local npm installation from .tgz file
  12. "package": "npm run build-lib && npm run npm-pack" // This command sequence the execution of above
  13. },
  14. "private": true,
  15. "dependencies": {
  16. "@angular/common": "^6.0.3", // Peer dependencies for angular-ratify library
  17. "@angular/core": "^6.0.3", // Peer dependencies for angular-ratify library
  18. "font-awesome": "^4.7.0" // Peer dependencies for angular-ratify library
  19. ...
  20. ...
  21. },
  22. "devDependencies": {
  23. ...
  24. ...
  25. }
  26. }
Add Comment
Please, Sign In to add comment