@cycle/react-native
Version:
Cycle.js driver that uses React Native to render
64 lines • 1.77 kB
JSON
{
"name": "@cycle/react-native",
"version": "3.0.0",
"description": "Cycle.js driver that uses React Native to render",
"author": "Andre Staltz <contact@staltz.com>",
"license": "MIT",
"bugs": "https://github.com/cyclejs/react-native/issues",
"repository": "https://github.com/cyclejs/react-native/tree/master",
"keywords": [
"react",
"cyclejs",
"xstream",
"mvi",
"react-native",
"driver"
],
"files": [
"lib"
],
"main": "lib/cjs/index.js",
"typings": "lib/cjs/index.d.ts",
"dependencies": {
"@cycle/react": "2.x",
"xstream": "11.x.x"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.64.0"
},
"devDependencies": {
"@cycle/run": "^5.4.0",
"@huston007/react-native-mock": "^0.3.3",
"@types/mocha": "^9.0.0",
"@types/node": "^14.6.0",
"@types/react": "16.9.46",
"@types/react-native": "0.63.8",
"@types/react-test-renderer": "^16.9.3",
"babel-cli": "^6.26.0",
"babel-preset-react-native": "4.0.1",
"expo": "38.x.x",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"react": ">=17.0.2",
"react-native": ">=0.64.0",
"react-test-renderer": "17.0.2",
"ts-node": "^10.4.0",
"typescript": "4.5.2",
"xstream": "^11.14.0"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false
},
"scripts": {
"compile": "rm -rf lib && npm run compile-cjs && npm run compile-es6",
"compile-cjs": "tsc --module commonjs --outDir ./lib/cjs",
"compile-es6": "tsc --module es6 --outDir ./lib/es6",
"test": "ts-node -P test/tsconfig.json --require @huston007/react-native-mock/mock.js node_modules/mocha/bin/mocha test/*.ts"
}
}