package.json 773 B

12345678910111213141516171819202122232425262728
  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. "prebuild": "npm run clean",
  13. "build": "tsc -p tsconfig.json",
  14. "build:watch": "tsc -p tsconfig.json --watch",
  15. "clean": "rimraf lib"
  16. },
  17. "author": "",
  18. "license": "MPL-2.0",
  19. "devDependencies": {
  20. "@types/mocha": "^7.0.2",
  21. "@types/node": "^14.14.31",
  22. "fast-check": "^1.24.2",
  23. "mocha": "^7.1.2",
  24. "rimraf": "^3.0.2",
  25. "ts-node": "^8.10.1",
  26. "typescript": "^3.9.2"
  27. }
  28. }