UNPKG

fluorine-lib

Version:

Reactive state and side effect management for React using a single stream of actions

91 lines (90 loc) 2.85 kB
{ "name": "fluorine-lib", "version": "5.0.0", "main": "lib/index.js", "jsnext:main": "es/index.js", "files": [ "lib", "es", "dist", "src" ], "description": "Reactive state and side effect management for React using a single stream of actions", "scripts": { "test": "BABEL_ENV=commonjssimple mocha --compilers js:babel-register --recursive --require ./test/helpers/setup-browser-env.js", "test:watch": "npm test -- --watch", "test:cov": "nyc npm test && nyc report --reporter=text-lcov | coveralls", "lint": "eslint src", "clean": "rm -rf lib es dist", "build:commonjs": "BABEL_ENV=commonjssimple babel src --out-dir lib", "build:es": "babel src --out-dir es", "build:umd": "NODE_ENV=development webpack src/index.js dist/fluorine.js", "build:umd:min": "NODE_ENV=production webpack src/index.js dist/fluorine.min.js", "build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min", "prepublish": "npm run clean && npm run build", "preversion": "npm run clean && npm run test", "version": "npm run build", "postversion": "git push && git push --tags", "prebook": "gitbook install", "book": "gitbook build", "postbook": "cp ./docs/now.json _book/", "book:watch": "gitbook serve" }, "author": "Phil Plückthun <phil@plckthn.me> (https://github.com/philplckthun)", "bugs": { "url": "https://github.com/philplckthun/fluorine/issues" }, "repository": { "type": "git", "url": "git+https://github.com/philpl/fluorine.git" }, "license": "CC0-1.0", "keywords": [ "fluorine", "flux", "react", "rx", "reducer", "state", "side effect", "manager", "immutable" ], "dependencies": { "babel-core": "^6.18.2", "rxjs": "^5.2.0", "symbol-observable": "^1.0.4" }, "devDependencies": { "babel-cli": "^6.16.0", "babel-eslint": "^7.0.0", "babel-loader": "^6.2.5", "babel-plugin-transform-es2015-modules-commonjs-simple": "^6.7.4", "babel-plugin-transform-react-constant-elements": "^6.9.1", "babel-plugin-transform-react-inline-elements": "^6.8.0", "babel-plugin-transform-runtime": "^6.15.0", "babel-preset-philpl": "^0.5.0", "babel-register": "^6.16.0", "coveralls": "^2.11.14", "enzyme": "^2.4.1", "eslint": "^3.6.1", "eslint-config-excellence": "^1.17.0", "eslint-plugin-mocha": "^4.5.1", "eslint-plugin-react": "^6.3.0", "expect": "^1.20.2", "gitbook-cli": "^2.3.0", "jsdom": "^9.5.0", "mocha": "^3.1.0", "nyc": "^10.0.0", "react": "^15.4.1", "react-addons-test-utils": "^15.4.1", "react-dom": "^15.4.1", "webpack": "^2.1.0-beta.13" }, "peerDependencies": { "react": "^0.14.0 || ^15.0.0-0" }, "engines": { "node": ">= 0.12.0" } }