123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "name": "dependjs",
- "version": "0.0.1",
- "description": "dependjs is a javascript dependency injector",
- "main": "./js/Index.js",
- "repository": {
- "type": "git",
- "url": "https://gitea.nitowa.xyz/npm-packages/dependjs.git"
- },
- "bugs": {
- "url": "https://gitea.nitowa.xyz/npm-packages/dependjs/issues",
- "email": "peter.millauer@gmail.com"
- },
- "homepage": "https://gitea.nitowa.xyz/docs/dependjs",
- "keywords": [
- "dependency injection",
- "inversion of control"
- ],
- "author": "Peter Millauer <peter.millauer@gmail.com>",
- "scripts": {
- "tsc": "tsc",
- "build": "npm run clean && tsc",
- "clean": "rm -rf js",
- "test": "npm run clean && npm run build && mocha --recursive --bail=true js/test"
- },
- "license": "MIT",
- "dependencies": {
- "reflect-metadata": "^0.1.13"
- },
- "devDependencies": {
- "@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",
- "mocha": "^6.2.0"
- },
- "files": [
- "js"
- ]
- }
|