UNPKG

injektor

Version:

The simple dependency injection for Devebot

62 lines (61 loc) 1.76 kB
{ "name": "injektor", "version": "0.1.19", "description": "The simple dependency injection for Devebot", "main": "index.js", "directories": { "lib": "lib/" }, "files": [ "bin/", "dist/", "lib/" ], "scripts": { "clean": "rm -rf ./lib", "build": "npm exec -- babel ./src -d ./lib", "check": "npm exec -- eslint src index.js", "check-silent": "npm exec -- eslint --quiet src index.js", "pretest": "npm run clean && NODE_ENV=${DEVEBOT_NODE_ENV:-test} npm run build", "testOnly": "npm exec --prefix=test -- mocha --recursive test/tdd/*-test.js test/bdd/*-test.js", "test": "npm run testOnly", "prepublishOnly": "npm run clean && NODE_ENV=${DEVEBOT_NODE_ENV:-production} npm run build", "verify": "npm run prepublishOnly && npm run testOnly" }, "repository": { "type": "git", "url": "git+https://github.com/devebot/injektor.git" }, "keywords": [ "devebot", "dependency", "injection" ], "author": { "name": "Hung Pham", "email": "pnhung177@acegik.net" }, "license": "MIT", "bugs": { "url": "https://github.com/devebot/injektor/issues" }, "homepage": "https://github.com/devebot/injektor#readme", "devDependencies": { "@babel/cli": "^7.19.3", "@babel/core": "^7.20.2", "@babel/preset-env": "^7.20.2", "babel-plugin-minify-mangle-names": "^0.5.1", "cross-env": "^7.0.3", "eslint": "^5.16.0", "eslint-config-promise": "^2.0.2", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-node": "^7.0.1", "eslint-plugin-promise": "^4.0.1", "eslint-plugin-security": "^1.5.0", "eslint-plugin-standard": "^4.0.0" }, "dependencies": { "ajv": "^6.2.0" } }