UNPKG

reactive-di-react

Version:

Reactive dependency injection - react bindings

85 lines (84 loc) 2.43 kB
{ "name": "reactive-di-react", "version": "1.1.1", "description": "Reactive dependency injection - react bindings", "publishConfig": { "registry": "https://registry.npmjs.org" }, "main": "dist/index.js", "config": { "builddir": "." }, "scripts": { "postinstall": "test -d conf && conf/resources/postinstall.sh $npm_package_name || exit 0", "prepush": "exit 0 && npm test", "prepublish": "conf/resources/prepublish.sh", "preversion": "conf/resources/checkgit.sh && npm test", "postversion": "git push && git push --tags", "precommit": "exit 0", "update": "ncu -ua && npm install", "clean": "rm -rf $npm_package_config_builddir/dist coverage", "build": "npm run clean && babel src --source-maps --out-dir $npm_package_config_builddir/dist", "build.dev": "babel src --source-maps --out-dir $npm_package_config_builddir/dist --watch", "lint": "eslint src", "check": "flow check", "testonly": "mocha", "test": "npm run check && npm run testonly", "test.dev": "npm run testonly -- --growl --watch", "test.cov": "babel-istanbul cover --report text --report html node_modules/mocha/bin/_mocha" }, "author": "Stefan Zerkalica <zerkalica@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "http://github.com/zerkalica/reactive-di-react.git" }, "keywords": [ "react", "reactive-di", "dependency injection", "di", "modular", "state", "functional", "immutable", "hot", "live", "replay", "flux", "elm" ], "files": [ "*.map", "*.js", ".flowconfig", "README.md", "LICENSE", "flow-typed", "dist" ], "devDependencies": { "babel-cli": "^6.10.1", "babel-core": "^6.10.4", "babel-plugin-espower": "^2.3.1", "babel-plugin-flow-comments": "^6.3.19", "babel-plugin-module-alias": "^1.5.0", "babel-plugin-syntax-flow": "^6.8.0", "babel-plugin-transform-flow-strip-types": "^6.8.0", "babel-preset-es2015": "^6.9.0", "babel-preset-es2015-loose": "^7.0.0", "babel-preset-stage-0": "^6.5.0", "eslint-config-airplus": "^1.1.9", "glob": "^7.0.5", "mocha": "^2.5.3", "power-assert": "^1.4.1", "sinon": "^1.17.4" }, "dependencies": { "es6-error": "^3.0.0", "react": "^15.x.x", "react-dom": "^15.2.1", "reactive-di": "^1.x.x", "reactive-di-observable": "^1.x.x" } }