package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "jasmine-marbles",
  3. "description": "Marble testing helpers for RxJS and Jasmine",
  4. "keywords": [
  5. "jasmine",
  6. "rxjs",
  7. "ngrx",
  8. "testing"
  9. ],
  10. "version": "0.9.2",
  11. "module": "index.js",
  12. "es2015": "es6/index.js",
  13. "main": "bundles/jasmine-marbles.umd.js",
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/synapse-wireless-labs/jasmine-marbles.git"
  17. },
  18. "homepage": "https://github.com/synapse-wireless-labs/jasmine-marbles#readme",
  19. "bugs": "https://github.com/synapse-wireless-labs/jasmine-marbles/issues",
  20. "license": "MIT",
  21. "scripts": {
  22. "clean": "rimraf release",
  23. "build:ts": "tsc",
  24. "build:es6": "tsc -p tsconfig.es6.json",
  25. "build:docs": "cpy LICENSE package.json README.md release",
  26. "prebuild": "npm run clean",
  27. "build": "npm run build:ts && npm run build:umd && npm run build:docs",
  28. "postversion": "npm run build",
  29. "build:umd": "npm run build:es6 && rollup -c rollup.config.js",
  30. "test": "jest",
  31. "precommit": "yarn run prettier",
  32. "prettier": "prettier --parser typescript --single-quote --trailing-comma all --write \"./**/*.ts\"",
  33. "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
  34. },
  35. "nyc": {
  36. "extension": [
  37. ".ts"
  38. ],
  39. "exclude": [
  40. "**/*.spec",
  41. "**/spec/**/*"
  42. ],
  43. "include": [
  44. "src/**/*.ts"
  45. ],
  46. "reporter": [
  47. "text-summary",
  48. "html"
  49. ]
  50. },
  51. "devDependencies": {
  52. "@babel/core": "^7.14.6",
  53. "@babel/preset-env": "^7.14.7",
  54. "@babel/preset-typescript": "^7.14.5",
  55. "@types/jest": "^26.0.23",
  56. "@types/lodash": "^4.14.106",
  57. "@types/node": "^14.17.0",
  58. "babel-jest": "^27.0.6",
  59. "conventional-changelog": "^3.1.12",
  60. "conventional-changelog-cli": "^2.0.25",
  61. "cpy-cli": "^1.0.1",
  62. "husky": "^0.14.3",
  63. "jasmine": "^3.7.0",
  64. "jest": "^27.0.6",
  65. "jest-jasmine2": "^27.0.6",
  66. "nyc": "^15.1.0",
  67. "prettier": "^2.3.0",
  68. "rimraf": "^2.6.1",
  69. "rollup": "^2.49.0",
  70. "rxjs": "^7.0.0",
  71. "ts-node": "^9.1.1",
  72. "typescript": "^4.2.0"
  73. },
  74. "peerDependencies": {
  75. "rxjs": "^7.0.0"
  76. },
  77. "dependencies": {
  78. "lodash": "^4.17.20"
  79. }
  80. }