package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "simple-plist",
  3. "author": "Joe Wollard",
  4. "license": "MIT",
  5. "homepage": "https://github.com/wollardj/simple-plist.git",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/wollardj/simple-plist.git"
  9. },
  10. "version": "1.3.1",
  11. "description": "A wrapper utility for interacting with plist data.",
  12. "main": "dist/index",
  13. "files": [
  14. "./dist"
  15. ],
  16. "types": "./dist/index.d.ts",
  17. "keywords": [
  18. "plist",
  19. "binary",
  20. "bplist",
  21. "xml"
  22. ],
  23. "scripts": {
  24. "build:tsc": "tsc --project ./tsconfig-build.json",
  25. "build": "run-s clean:build build:tsc",
  26. "clean:build": "rimraf dist",
  27. "clean": "rimraf __tests__/write-test* coverage",
  28. "prepare": "husky install",
  29. "pretest": "clean",
  30. "test": "jest --coverage --verbose"
  31. },
  32. "dependencies": {
  33. "bplist-creator": "0.1.0",
  34. "bplist-parser": "0.3.1",
  35. "plist": "^3.0.5"
  36. },
  37. "devDependencies": {
  38. "@types/jest": "^27.4.1",
  39. "@types/node": "^16.11.26",
  40. "@types/plist": "^3.0.2",
  41. "husky": "^7.0.4",
  42. "jest": "^27.5.1",
  43. "lint-staged": "^11.2.6",
  44. "npm-run-all": "^4.1.5",
  45. "prettier": "^2.6.1",
  46. "rimraf": "^3.0.2",
  47. "ts-jest": "^27.0.7",
  48. "typescript": "^4.4.4"
  49. },
  50. "lint-staged": {
  51. "*.{ts,js,json,md}": "yarn prettier --write"
  52. }
  53. }