package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "outdent",
  3. "version": "0.8.0",
  4. "description": "Remove leading indentation from ES6 template literals.",
  5. "main": "lib/index.js",
  6. "jsnext:main": "lib-module/index.js",
  7. "module": "lib-module/index.js",
  8. "typings": "lib/index.d.ts",
  9. "scripts": {
  10. "clean": "ts-node-script ./scripts/run.ts",
  11. "build": "ts-node-script ./scripts/run.ts",
  12. "test": "ts-node-script ./scripts/run.ts",
  13. "lint": "ts-node-script ./scripts/run.ts",
  14. "format": "ts-node-script ./scripts/run.ts",
  15. "prepack": "ts-node-script ./scripts/run.ts",
  16. "setup": "ts-node-script ./scripts/run.ts"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/cspotcode/outdent.git"
  21. },
  22. "keywords": [
  23. "es6",
  24. "es2015",
  25. "template string",
  26. "template literal",
  27. "interpolation",
  28. "string",
  29. "template",
  30. "indent"
  31. ],
  32. "author": "Andrew Bradley <cspotcode@gmail.com>",
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://github.com/cspotcode/outdent/issues"
  36. },
  37. "homepage": "https://github.com/cspotcode/outdent#readme",
  38. "devDependencies": {
  39. "@types/chai": "^4.0.4",
  40. "@types/fs-extra": "^9.0.5",
  41. "@types/mocha": "^2.2.43",
  42. "@types/node": "^14.14.12",
  43. "@types/webpack": "^4.4.11",
  44. "@types/which": "^1.0.28",
  45. "chai": "^4.1.2",
  46. "execa": "^5.0.0",
  47. "fs-extra": "^9.0.1",
  48. "mocha": "^4.0.1",
  49. "np": "^6.2.0",
  50. "ts-node": "^9.1.1",
  51. "typescript": ">=4.1.3 <4.2",
  52. "webpack": "^4.17.2",
  53. "which": "^1.3.0"
  54. },
  55. "files": [
  56. "/lib",
  57. "/lib-module",
  58. "/src",
  59. "/LICENSE",
  60. "/README.md",
  61. "/tsconfig-build.json",
  62. "/tsconfig-lib.json",
  63. "/tsconfig-module.json",
  64. "/tsconfig.json"
  65. ]
  66. }