{ "name": "depents", "version": "0.0.4", "description": "depents is a typescript dependency injector", "main": "./js/Index.js", "repository": { "type": "git", "url": "https://gitea.nitowa.xyz/npm-packages/depents.git" }, "bugs": { "url": "https://gitea.nitowa.xyz/npm-packages/depents/issues", "email": "peter.millauer@gmail.com" }, "homepage": "https://gitea.nitowa.xyz/docs/depents", "keywords": [ "typescript", "dependency injection", "inversion of control" ], "author": "Peter Millauer ", "scripts": { "tsc": "tsc", "build": "npm run clean && tsc", "clean": "rm -rf js", "test": "npm run clean && npm run build && mocha --bail=true js/test/BasicTest && mocha --bail=true js/test/InitializationTest", "docs": "typedoc --out docs ./src --readme ./README.md --plugin typedoc-plugin-markdown --mode file --hideBreadcrumbs --hideSources" }, "license": "MIT", "dependencies": { "reflect-metadata": "^0.1.13" }, "devDependencies": { "typescript": "^4.7.2", "@types/node": "^11.13.19", "@types/chai": "^4.2.21", "@types/expect": "^1.20.4", "@types/mocha": "^5.2.7", "chai": "^4.3.4", "chai-as-promised": "^7.1.1", "typedoc": "^0.15.0", "typedoc-plugin-markdown": "^2.2.6", "mocha": "^6.2.0" }, "files": [ "js/Index.js", "js/Index.d.ts", "js/src/*" ] }