context-tree
Version:
Simple hierarchical dependency injection library, as the part of Fractal Architecture
60 lines (59 loc) • 1.39 kB
JSON
{
"name": "context-tree",
"version": "0.2.2",
"description": "Simple hierarchical dependency injection library, as the part of Fractal Architecture",
"source": "src/index.ts",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": " tsc --module commonjs --outDir dist && tsc --module esnext --outDir dist/esm",
"preversion": "npm run build",
"test": "jest"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"package.json",
"jest.config.js"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/zheksoon/context-tree.git"
},
"keywords": [
"context",
"react context",
"fractal",
"fractal architecture",
"dependency injection",
"di",
"di framework",
"di library",
"ioc",
"inversion of control",
"hierarchical",
"hierarchy",
"tsyringe",
"inversify",
"awilix",
"typescript",
"vanilla js"
],
"author": "Eugene Daragan",
"license": "MIT",
"bugs": {
"url": "https://github.com/zheksoon/context-tree/issues"
},
"homepage": "https://github.com/zheksoon/context-tree#readme",
"devDependencies": {
"@types/jest": "^29.5.10",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}