package.json 664 B

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