package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "tsconfig",
  3. "version": "7.0.0",
  4. "description": "Resole and parse `tsconfig.json`, replicating to TypeScript's behaviour",
  5. "main": "dist/tsconfig.js",
  6. "typings": "dist/tsconfig.d.ts",
  7. "files": [
  8. "dist/",
  9. "LICENSE"
  10. ],
  11. "scripts": {
  12. "lint": "tslint \"src/**/*.ts\"",
  13. "build": "npm run build-ts",
  14. "build-ts": "rm -rf dist && tsc",
  15. "test-spec": "mocha dist/**/*.spec.js -R spec --bail",
  16. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- dist/**/*.spec.js -R spec --bail",
  17. "test": "npm run build && npm run lint && npm run test-cov",
  18. "prepublish": "npm run build"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/TypeStrong/tsconfig.git"
  23. },
  24. "keywords": [
  25. "TypeScript",
  26. "compiler",
  27. "config",
  28. "tsconfig",
  29. "json",
  30. "resolve"
  31. ],
  32. "author": {
  33. "name": "Blake Embrey",
  34. "email": "hello@blakeembrey.com",
  35. "url": "http://blakeembrey.me"
  36. },
  37. "contributors": [
  38. "basaratali@gmail.com"
  39. ],
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/TypeStrong/tsconfig/issues"
  43. },
  44. "homepage": "https://github.com/TypeStrong/tsconfig",
  45. "dependencies": {
  46. "@types/strip-bom": "^3.0.0",
  47. "@types/strip-json-comments": "0.0.30",
  48. "strip-bom": "^3.0.0",
  49. "strip-json-comments": "^2.0.0"
  50. },
  51. "devDependencies": {
  52. "@types/chai": "^4.0.4",
  53. "@types/mocha": "^2.2.42",
  54. "@types/node": "^8.0.25",
  55. "bluebird": "^3.4.1",
  56. "chai": "^3.0.0",
  57. "istanbul": "^0.4.0",
  58. "mocha": "^3.2.0",
  59. "tslint": "^4.5.1",
  60. "tslint-config-standard": "^4.0.0",
  61. "typescript": "^2.2.1"
  62. }
  63. }