package.json 466 B

123456789101112131415161718192021
  1. {
  2. "private": true,
  3. "dependencies": {
  4. "promise-polyfill": "6.0.2",
  5. "tslib": "1.7.1",
  6. "whatwg-fetch": "2.0.3"
  7. },
  8. "devDependencies": {
  9. "rollup": "0.49.2",
  10. "rollup-plugin-buble": "0.15.0",
  11. "rollup-plugin-node-resolve": "3.0.0",
  12. "rollup-plugin-uglify": "2.0.1",
  13. "typescript": "2.7.1"
  14. },
  15. "scripts": {
  16. "compile": "tsc",
  17. "bundle-js": "rollup -c rollup.config.js",
  18. "build": "npm run compile && npm run bundle-js"
  19. }
  20. }