package.json 945 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "endent",
  3. "version": "2.1.0",
  4. "description": "➡️ An ES6 string tag that makes indentation right",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "prepublishOnly": "npm test",
  8. "scripts": {
  9. "test": "jest",
  10. "prepare": "npm run build",
  11. "build": "tsc"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/ZhouHansen/endent.git"
  16. },
  17. "author": {
  18. "name": "zhouhancheng",
  19. "email": "z308114274@gmail.com"
  20. },
  21. "keywords": [
  22. "dedent",
  23. "tag",
  24. "multi-line string"
  25. ],
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/ZhouHansen/endent/issues"
  29. },
  30. "homepage": "https://github.com/ZhouHansen/endent#readme",
  31. "dependencies": {
  32. "dedent": "^0.7.0",
  33. "fast-json-parse": "^1.0.3",
  34. "objectorarray": "^1.0.5"
  35. },
  36. "devDependencies": {
  37. "@types/jest": "^25.2.1",
  38. "jest": "^25.3.0",
  39. "ts-jest": "^25.3.1",
  40. "typescript": "^3.8.3"
  41. }
  42. }