UNPKG

1.28 kBJSONView Raw
1{
2 "name": "@mindhive/di",
3 "version": "4.2.0",
4 "description": "Super simple dependency injection",
5 "contributors": [
6 {
7 "name": "Damon Maria",
8 "email": "damon@mindhive.co.nz"
9 }
10 ],
11 "private": false,
12 "main": "./index.js",
13 "scripts": {
14 "lint": "eslint src",
15 "build": "babel src --ignore *.spec.js --out-dir dist",
16 "test": "mocha --compilers js:babel-core/register --reporter spec \"src/**/*.spec.js\"",
17 "prepublish": "npm run build"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git@github.com:mindhivenz/di-js.git"
22 },
23 "keywords": [
24 "dependency-injection",
25 "ioc",
26 "modules"
27 ],
28 "dependencies": {
29 "babel-runtime": "^6.23.0"
30 },
31 "devDependencies": {
32 "@mindhive/some": "^3.0.0",
33 "babel-cli": "^6.18.0",
34 "babel-plugin-transform-object-rest-spread": "^6.23.0",
35 "babel-plugin-transform-runtime": "^6.15.0",
36 "babel-preset-env": "^1.2.1",
37 "chai": "^3.5.0",
38 "chai-as-promised": "^6.0.0",
39 "eslint": "^3.13.1",
40 "eslint-config-mindhive": "^1.0.1",
41 "mocha": "^3.1.2",
42 "sinon": "^2.3.1",
43 "sinon-chai": "^2.8.0"
44 },
45 "homepage": "https://github.com/mindhivenz/di-js",
46 "bugs": {
47 "url": "https://github.com/mindhivenz/di-js/issues"
48 },
49 "license": "MIT"
50}