UNPKG

react-kilto

Version:

Bindings between Kilto and React

71 lines (70 loc) 2.18 kB
{ "name": "react-kilto", "version": "0.5.0", "description": "Bindings between Kilto and React", "scripts": { "eslint": "eslint ./", "eslint-fix": "eslint --fix ./", "test": "NODE_ENV=test mocha --compilers js:babel-register --recursive --require ./test/setup.js", "flow": "flow; test $? -eq 0 -o $? -eq 2", "check": "npm run test && npm run flow && npm run eslint", "build-umd-dev": "NODE_ENV=development webpack", "build-umd-prod": "NODE_ENV=production webpack && gzip < umd/ReactKilto.min.js > umd/ReactKilto.min.js.gz", "build-umd": "npm run build-umd-dev && npm run build-umd-prod", "build-common": "babel ./src --out-dir ./lib", "build": "npm run build-common && npm run build-umd", "watch": "babel --watch ./src --out-dir ./lib", "clean": "rm -rf ./lib", "prepare": "npm run clean && npm run build && npm run check && echo \"Ready to publish! Commit your changes to git then run 'npm version' and 'npm publish'\"" }, "main": "./lib/index.js", "files": [ "lib", "src" ], "keywords": [ "state", "immutable", "javacript", "boilerplate", "functional", "kilto", "simple", "async", "await", "action", "time", "traveling", "predictable" ], "authors": [ "Colton Voege <colton@mimirhq.com> (https://github.com/cvoege)" ], "license": "MIT", "devDependencies": { "babel-cli": "^6.18.0", "babel-core": "^6.18.2", "babel-eslint": "^7.1.1", "babel-loader": "^6.2.8", "babel-plugin-transform-async-to-generator": "^6.16.0", "babel-plugin-transform-object-rest-spread": "^6.19.0", "babel-plugin-transform-runtime": "^6.15.0", "babel-preset-es2015": "^6.18.0", "babel-preset-react": "^6.16.0", "chai": "^3.5.0", "chai-spies": "^0.7.1", "enzyme": "^2.6.0", "eslint": "^3.10.2", "eslint-plugin-flowtype": "^2.19.0", "eslint-plugin-react": "^6.7.1", "flow-bin": "^0.35.0", "jsdom": "^9.8.3", "kilto": "*", "mocha": "^3.1.1", "react": "^15.4.1", "react-addons-test-utils": "^15.4.1", "react-dom": "^15.4.1", "webpack": "^1.13.3" }, "dependencies": {} }