You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "depents",
  3. "version": "0.0.4",
  4. "description": "depents is a typescript dependency injector",
  5. "main": "./js/Index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://gitea.nitowa.xyz/npm-packages/depents.git"
  9. },
  10. "bugs": {
  11. "url": "https://gitea.nitowa.xyz/npm-packages/depents/issues",
  12. "email": "peter.millauer@gmail.com"
  13. },
  14. "homepage": "https://gitea.nitowa.xyz/docs/depents",
  15. "keywords": [
  16. "typescript",
  17. "dependency injection",
  18. "inversion of control"
  19. ],
  20. "author": "Peter Millauer <peter.millauer@gmail.com>",
  21. "scripts": {
  22. "tsc": "tsc",
  23. "build": "npm run clean && tsc",
  24. "clean": "rm -rf js",
  25. "test": "npm run clean && npm run build && mocha --bail=true js/test/BasicTest && mocha --bail=true js/test/InitializationTest",
  26. "docs": "typedoc --out docs ./src --readme ./README.md --plugin typedoc-plugin-markdown --mode file --hideBreadcrumbs --hideSources"
  27. },
  28. "license": "MIT",
  29. "dependencies": {
  30. "reflect-metadata": "^0.1.13"
  31. },
  32. "devDependencies": {
  33. "typescript": "^4.7.2",
  34. "@types/node": "^11.13.19",
  35. "@types/chai": "^4.2.21",
  36. "@types/expect": "^1.20.4",
  37. "@types/mocha": "^5.2.7",
  38. "chai": "^4.3.4",
  39. "chai-as-promised": "^7.1.1",
  40. "typedoc": "^0.15.0",
  41. "typedoc-plugin-markdown": "^2.2.6",
  42. "mocha": "^6.2.0"
  43. },
  44. "files": [
  45. "js/Index.js",
  46. "js/Index.d.ts",
  47. "js/src/*"
  48. ]
  49. }