UNPKG

react-native-mock-tmp-build

Version:

A fully mocked and test-friendly version of react native

72 lines (71 loc) 2.02 kB
{ "name": "react-native-mock-tmp-build", "version": "0.0.1", "description": "A fully mocked and test-friendly version of react native", "main": "build/react-native.js", "scripts": { "prepublish": "npm run build", "test": "npm run lint && npm run mocha", "mocha": "mocha --require babel-core/register 'test/**/*.js'", "mocha:watch": "npm run test -- --watch", "build": "rm -rf build/ && babel src --out-dir build", "lint": "eslint 'src/' 'test/' 'mock.js'" }, "repository": { "type": "git", "url": "git+https://github.com/RealOrangeOne/react-native-mock.git" }, "keywords": [ "react", "react-native", "mock", "testing" ], "author": "Jake Howard <git@theorangeone.net>", "license": "MIT", "bugs": { "url": "https://github.com/RealOrangeOne/react-native-mock/issues" }, "homepage": "https://github.com/RealOrangeOne/react-native-mock#readme", "devDependencies": { "babel-cli": "6.9.0", "babel-core": "6.9.0", "babel-eslint": "6.0.4", "babel-preset-airbnb": "2.0.0", "babel-preset-react-native": "1.8.0", "chai": "3.5.0", "eslint": "2.10.2", "eslint-config-airbnb": "9.0.1", "eslint-plugin-import": "1.8.0", "eslint-plugin-jsx-a11y": "1.2.2", "eslint-plugin-react": "5.1.1", "eslint-plugin-react-native": "1.0.2", "mocha": "2.5.3", "react": "^16.2.0", "react-native": "^0.53.2" }, "dependencies": { "create-react-class": "^15.6.3", "cubic-bezier": "^0.1.2", "invariant": "^2.2.1", "keymirror": "^0.1.1", "raf": "^3.2.0", "react-addons-create-fragment": "^15.4.0", "react-addons-perf": "^15.4.0", "react-addons-pure-render-mixin": "^15.4.0", "react-addons-test-utils": "^15.4.0", "react-addons-update": "^15.4.0", "react-dom": "^16.2.0", "react-timer-mixin": "^0.13.3", "warning": "^2.1.0" }, "peerDependencies": { "react": "*" }, "babel": { "presets": [ "airbnb", "react-native" ] } }