package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "zen-observable-ts",
  3. "version": "0.8.21",
  4. "description": "An Implementation of ES Observables in Typescript",
  5. "author": "Evans Hauser <evanshauser@gmail.com>",
  6. "contributors": [],
  7. "license": "MIT",
  8. "main": "./lib/index.js",
  9. "module": "./lib/bundle.esm.js",
  10. "typings": "./lib/index.d.ts",
  11. "sideEffects": false,
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/apollographql/apollo-link.git"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/apollographql/apollo-link/issues"
  18. },
  19. "homepage": "https://github.com/zenparsing/zen-observable",
  20. "scripts": {
  21. "build": "tsc && rollup -c",
  22. "clean": "rimraf lib/* && rimraf coverage/*",
  23. "coverage": "jest --coverage",
  24. "filesize": "../../scripts/minify",
  25. "lint": "tslint -c \"../../tslint.json\" -p tsconfig.json -c ../../tslint.json src/*.ts",
  26. "prebuild": "npm run clean",
  27. "prepare": "npm run build",
  28. "test": "npm run lint && jest",
  29. "watch": "tsc -w -p ."
  30. },
  31. "devDependencies": {
  32. "@types/jest": "24.9.0",
  33. "jest": "24.9.0",
  34. "rimraf": "2.7.1",
  35. "rollup": "1.29.1",
  36. "ts-jest": "22.4.6",
  37. "tslint": "5.20.1",
  38. "typescript": "3.0.3"
  39. },
  40. "jest": {
  41. "transform": {
  42. ".(ts|tsx)": "ts-jest"
  43. },
  44. "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
  45. "moduleFileExtensions": [
  46. "ts",
  47. "tsx",
  48. "js",
  49. "json"
  50. ],
  51. "testURL": "http://localhost"
  52. },
  53. "dependencies": {
  54. "tslib": "^1.9.3",
  55. "zen-observable": "^0.8.0"
  56. },
  57. "gitHead": "1012934b4fd9ab436c4fdcd5e9b1bb1e4c1b0d98"
  58. }