package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "@lumino/polling",
  3. "version": "1.6.0",
  4. "description": "Lumino Polling",
  5. "homepage": "https://github.com/jupyterlab/lumino",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/lumino/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jupyterlab/lumino.git"
  12. },
  13. "license": "BSD-3-Clause",
  14. "author": "A. T. Darian <git@darian.af>",
  15. "contributors": [
  16. "A. T. Darian <git@darian.af>",
  17. "Ian Rose <ian.r.rose@gmail.com>",
  18. "Jason Grout <jgrout6@bloomberg.net>",
  19. "Steven Silvester <steven.silvester@gmail.com>"
  20. ],
  21. "files": [
  22. "dist/*",
  23. "src/*",
  24. "types/*"
  25. ],
  26. "main": "dist/index.js",
  27. "unpkg": "dist/index.min.js",
  28. "module": "dist/index.es6",
  29. "types": "types/index.d.ts",
  30. "scripts": {
  31. "api": "api-extractor run --local --verbose",
  32. "build": "npm run build:src && rollup -c",
  33. "build:src": "tsc --build",
  34. "build:test": "tsc --build tests && cd tests && webpack",
  35. "clean": "rimraf ./lib && rimraf *.tsbuildinfo && rimraf ./types && rimraf ./dist",
  36. "clean:test": "rimraf tests/build",
  37. "docs": "typedoc --options tdoptions.json src",
  38. "minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
  39. "test": "npm run test:firefox",
  40. "test:chrome": "cd tests && karma start --browsers=Chrome",
  41. "test:firefox": "cd tests && karma start --browsers=Firefox",
  42. "test:ie": "cd tests && karma start --browsers=IE",
  43. "watch": "tsc --build --watch"
  44. },
  45. "dependencies": {
  46. "@lumino/coreutils": "^1.8.0",
  47. "@lumino/disposable": "^1.7.0",
  48. "@lumino/signaling": "^1.7.0"
  49. },
  50. "devDependencies": {
  51. "@microsoft/api-extractor": "^7.6.0",
  52. "@types/chai": "^3.4.35",
  53. "@types/mocha": "^2.2.39",
  54. "@types/node": "^12.12.17",
  55. "chai": "^3.5.0",
  56. "karma": "^4.4.1",
  57. "karma-chrome-launcher": "^2.0.0",
  58. "karma-firefox-launcher": "^1.0.0",
  59. "karma-ie-launcher": "^1.0.0",
  60. "karma-mocha": "^1.3.0",
  61. "karma-mocha-reporter": "^2.2.2",
  62. "mocha": "^6.2.2",
  63. "rimraf": "^2.5.2",
  64. "rollup": "^2.22.1",
  65. "rollup-plugin-node-resolve": "^5.2.0",
  66. "rollup-plugin-postcss": "^2.0.3",
  67. "rollup-plugin-sourcemaps": "^0.5.0",
  68. "terser": "^4.6.2",
  69. "tslib": "1.10.0",
  70. "typedoc": "~0.12.0",
  71. "typescript": "~3.6.0",
  72. "webpack": "^4.41.3",
  73. "webpack-cli": "^3.3.10"
  74. },
  75. "publishConfig": {
  76. "access": "public"
  77. },
  78. "jsdelivr": "dist/index.min.js",
  79. "gitHead": "cbb8cfd804b647ff7a150799353b27c2dc17f373"
  80. }