package.json 756 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "stream-helper",
  3. "version": "1.0.0",
  4. "description": "",
  5. "lib": "index/index.js",
  6. "files": [
  7. "lib/*"
  8. ],
  9. "scripts": {
  10. "test": "mocha -r ts-node/register test/*.test.ts",
  11. "test:watch": "mocha -r ts-node/register --watch-extensions ts --watch --watch-files src/**/*.ts --watch-files test/**/*.ts --reporter Min test/*.test.ts",
  12. "build": "yarn install && tsc -p tsconfig.json",
  13. "build:watch": "tsc -p tsconfig.json --watch",
  14. "clean": "rimraf lib"
  15. },
  16. "author": "",
  17. "license": "MPL-2.0",
  18. "devDependencies": {
  19. "@types/mocha": "^7.0.2",
  20. "@types/node": "^14.14.31",
  21. "fast-check": "^1.24.2",
  22. "mocha": "^7.1.2",
  23. "rimraf": "^3.0.2",
  24. "ts-node": "^8.10.1",
  25. "typescript": "^3.9.2"
  26. }
  27. }