UNPKG

smart-factory

Version:

functional programming-ready dependancy injector/ioc container library

54 lines (53 loc) 1.77 kB
{ "name": "smart-factory", "version": "1.0.12", "description": "functional programming-ready dependancy injector/ioc container library", "main": "dist/lib/index.js", "typings": "dist/typings/lib/index.d.ts", "scripts": { "dev": "TS_NODE_FILES=true nodemon --exec ts-node -- --project ./tsconfig.json ./src/example2", "example1": "TS_NODE_FILES=true nodemon --watch ./src -e ts --exec ts-node -- --project ./tsconfig.json ./src/example1", "example2": "TS_NODE_FILES=true nodemon --watch ./src -e ts --exec ts-node -- --project ./tsconfig.json ./src/example2", "example3": "TS_NODE_FILES=true nodemon --watch ./src -e ts --exec ts-node -- --project ./tsconfig.json ./src/example3", "build": "npm run test && tsc -p tsconfig.release.json", "test": "jest -c jest.config.js", "lint": "tslint -t stylish --project ./tsconfig.json", "test:coverage": "jest --coverage" }, "repository": { "type": "git", "url": "git+https://github.com/JayJayDee/SmartFactory.git" }, "author": "JayJayDee", "license": "ISC", "bugs": { "url": "https://github.com/JayJayDee/SmartFactory/issues" }, "homepage": "https://github.com/JayJayDee/SmartFactory#readme", "devDependencies": { "@types/express": "^4.16.0", "@types/glob": "^7.1.1", "@types/jest": "^23.3.9", "@types/lodash": "^4.14.118", "@types/node": "^10.12.10", "jest": "^23.6.0", "nodemon": "^1.18.6", "ts-jest": "^23.10.4", "ts-node": "^7.0.1", "tslib": "^1.9.3", "tslint": "^5.11.0", "typescript": "^3.1.6", "express": "^4.16.4", "express-router": "0.0.1" }, "dependencies": { "glob": "^7.1.3", "lodash": "^4.17.11" }, "keywords": [ "di", "ioc", "container", "dependancy" ] }