UNPKG

papaya

Version:

A minimal dependency injection container

47 lines (46 loc) 1.1 kB
{ "name": "papaya", "version": "3.0.0", "description": "A minimal dependency injection container", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "pretest": "tsc --sourceMap", "build": "bin/build", "build-release": "bin/build-release", "doc": "typedoc index.ts", "test": "nyc --reporter=lcovonly --reporter=text mocha", "lint": "tslint --project ." }, "repository": { "type": "git", "url": "https://github.com/justinhoward/papaya.git" }, "keywords": [ "di", "container", "dependency", "injection", "pimple", "typescript", "types" ], "author": "Justin Howard <jmhoward0@gmail.com>", "license": "MIT", "devDependencies": { "@types/chai": "^4.1.2", "@types/mocha": "^2.2.47", "chai": "^4.1.2", "codeclimate-test-reporter": "^0.5.0", "mocha": "^5.0.0", "nyc": "^11.4.1", "source-map-support": "^0.5.2", "tslint": "^5.9.1", "tslint-config-standard": "^7.0.0", "typedoc": "^0.9.0", "typescript": "^2.6.2" }, "nyc": { "include": "dist/index.js" } }