package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@akryum/winattr",
  3. "description": "Foolproof Windows® file attributes.",
  4. "version": "3.0.0",
  5. "license": "MIT",
  6. "author": "Steven Vachon <contact@svachon.com> (https://www.svachon.com/)",
  7. "contributors": [
  8. "Guillaume Chau <guillaume.b.chau@gmail.com> @Akryum"
  9. ],
  10. "main": "lib",
  11. "repository": "Akryum/winattr",
  12. "scripts": {
  13. "prepublishOnly": "yarn test",
  14. "test": "yarn test:eslint && yarn test:unit",
  15. "test:unit": "mocha test/ --bail --reporter spec --check-leaks",
  16. "test:eslint": "eslint lib --ext .js"
  17. },
  18. "dependencies": {
  19. "fswin": "^2.17.1227"
  20. },
  21. "devDependencies": {
  22. "chai": "^4.0.0",
  23. "eslint": "^4.10.0",
  24. "eslint-config-standard": "^11.0.0",
  25. "eslint-plugin-import": "^2.8.0",
  26. "eslint-plugin-node": "^6.0.0",
  27. "eslint-plugin-promise": "^3.4.0",
  28. "eslint-plugin-standard": "^3.0.1",
  29. "mocha": "^3.4.2"
  30. },
  31. "engines": {
  32. "node": ">= 8"
  33. },
  34. "files": [
  35. "lib",
  36. "license"
  37. ],
  38. "keywords": [
  39. "attributes",
  40. "file",
  41. "fs",
  42. "fs-stat",
  43. "native",
  44. "ntfs",
  45. "windows"
  46. ],
  47. "publishConfig": {
  48. "access": "public"
  49. }
  50. }