package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "stat-mode",
  3. "version": "1.0.0",
  4. "description": "Offers convenient getters and setters for the stat `mode`",
  5. "main": "dist/src/index",
  6. "typings": "dist/src/index",
  7. "files": [
  8. "dist/src"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/TooTallNate/stat-mode.git"
  13. },
  14. "keywords": [
  15. "stat",
  16. "mode",
  17. "owner",
  18. "group",
  19. "others",
  20. "chmod",
  21. "octal",
  22. "symbolic",
  23. "permissions"
  24. ],
  25. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/TooTallNate/stat-mode/issues"
  29. },
  30. "homepage": "https://github.com/TooTallNate/stat-mode",
  31. "devDependencies": {
  32. "@types/escodegen": "^0.0.6",
  33. "@types/esprima": "^4.0.2",
  34. "@types/mocha": "^5.2.7",
  35. "@types/node": "^10.5.3",
  36. "@typescript-eslint/eslint-plugin": "1.6.0",
  37. "@typescript-eslint/parser": "1.1.0",
  38. "cpy-cli": "^2.0.0",
  39. "eslint": "5.16.0",
  40. "eslint-config-airbnb": "17.1.0",
  41. "eslint-config-prettier": "4.1.0",
  42. "eslint-import-resolver-typescript": "1.1.1",
  43. "eslint-plugin-import": "2.16.0",
  44. "eslint-plugin-jsx-a11y": "6.2.1",
  45. "eslint-plugin-react": "7.12.4",
  46. "mocha": "^6.2.0",
  47. "rimraf": "^3.0.0",
  48. "typescript": "^3.5.3"
  49. },
  50. "engines": {
  51. "node": ">= 6"
  52. },
  53. "scripts": {
  54. "prebuild": "rimraf dist",
  55. "build": "tsc",
  56. "postbuild": "cpy --parents src test '!**/*.ts' dist",
  57. "test": "mocha --reporter spec dist/test/test*.js",
  58. "test-lint": "eslint src --ext .js,.ts",
  59. "prepublishOnly": "npm run build"
  60. }
  61. }