package.json 774 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "@nodelib/fs.stat",
  3. "version": "1.1.3",
  4. "description": "Get the status of a file with some features",
  5. "license": "MIT",
  6. "repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat",
  7. "keywords": [
  8. "NodeLib",
  9. "fs",
  10. "FileSystem",
  11. "file system",
  12. "stat"
  13. ],
  14. "engines": {
  15. "node": ">= 6"
  16. },
  17. "main": "out/index.js",
  18. "typings": "out/index.d.ts",
  19. "scripts": {
  20. "clean": "rimraf out",
  21. "lint": "tslint \"src/**/*.ts\" -p . -t stylish",
  22. "compile": "tsc -b .",
  23. "compile:watch": "tsc -p . --watch --sourceMap",
  24. "test": "mocha \"out/**/*.spec.js\" -s 0",
  25. "build": "npm run clean && npm run lint && npm run compile && npm test",
  26. "watch": "npm run clean && npm run compile:watch"
  27. }
  28. }