UNPKG

1.36 kBJSONView Raw
1{
2 "name": "@mindhive/di",
3 "version": "4.0.1",
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.18.0"
30 },
31 "devDependencies": {
32 "@mindhive/some": "^3.0.0",
33 "babel-cli": "^6.18.0",
34 "babel-eslint": "^7.1.0",
35 "babel-plugin-transform-runtime": "^6.15.0",
36 "babel-polyfill": "^6.16.0",
37 "babel-preset-es2015": "^6.18.0",
38 "babel-preset-stage-3": "^6.17.0",
39 "chai": "^3.5.0",
40 "chai-as-promised": "^6.0.0",
41 "eslint": "^3.8.1",
42 "eslint-config-airbnb-base": "^9.0.0",
43 "eslint-plugin-import": "^2.0.1",
44 "mocha": "^3.1.2",
45 "sinon": "^1.17.6",
46 "sinon-chai": "^2.8.0"
47 },
48 "homepage": "https://github.com/mindhivenz/di-js",
49 "bugs": {
50 "url": "https://github.com/mindhivenz/di-js/issues"
51 },
52 "license": "MIT"
53}