package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "config-file-ts",
  3. "version": "0.2.4",
  4. "main": "dist/index.js",
  5. "types": "dist/index.d.ts",
  6. "author": "lee mighdoll",
  7. "description": "Use Typescript for configuration files. Types for safety. Compiled for speed.",
  8. "keywords": [
  9. "typescript",
  10. "config",
  11. "configuration",
  12. "conf",
  13. "cli",
  14. "cached",
  15. "command",
  16. "cmd",
  17. "command-line"
  18. ],
  19. "dependencies": {
  20. "glob": "^7.1.6",
  21. "typescript": "^4.0.2"
  22. },
  23. "devDependencies": {
  24. "@types/chai": "^4.2.12",
  25. "@types/glob": "^7.1.3",
  26. "@types/jest": "^26.0.10",
  27. "@types/node": "^14.6.1",
  28. "@types/rimraf": "^3.0.0",
  29. "chai": "^4.2.0",
  30. "jest": "^26.4.2",
  31. "rimraf": "^3.0.2",
  32. "rollup": "^2.26.6",
  33. "rollup-plugin-typescript2": "^0.27.2",
  34. "ts-jest": "^26.3.0"
  35. },
  36. "scripts": {
  37. "test": "jest",
  38. "dist": "rimraf dist && rollup -c"
  39. },
  40. "repository": {
  41. "type": "git",
  42. "url": "https://github.com/mighdoll/config-file-ts"
  43. },
  44. "files": [
  45. "dist",
  46. "src"
  47. ],
  48. "sideEffects": false,
  49. "license": "MIT"
  50. }