package.json 676 B

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