rxact-react
Version:
React bindings for Rxact
111 lines (110 loc) • 3.1 kB
JSON
{
"name": "rxact-react",
"version": "1.0.0-beta.2",
"description": "React bindings for Rxact",
"keywords": [
"rxact",
"react",
"reactjs"
],
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"repository": "git@github.com:Darmody/rxact-react.git",
"author": "Darmody <eterlf41@gmail.com>",
"bugs": {
"url": "https://github.com/Darmody/rxact-react/issues"
},
"license": "MIT",
"private": false,
"files": [
"README.md",
"es",
"lib",
"dist"
],
"scripts": {
"build": "yarn build:lib && yarn build:es && yarn build:umd && yarn build:umd:min",
"build:lib": "NODE_ENV=production BABEL_ENV=lib babel src --out-dir lib --ignore __tests__",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel src --out-dir es --ignore __tests__",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/rxact-react.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/rxact-react.min.js",
"clean": "rimraf dist lib es",
"prepublish": "yarn lint && yarn test && yarn flow && yarn clean && yarn build",
"lint": "eslint src",
"flow": "flow check",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16",
"react-dom": "^0.14.0 || ^15.0.0 || ^16",
"rxact": "^1.0.0-beta.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.0.2",
"babel-jest-assertions": "^0.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.0",
"cross-env": "^5.0.5",
"enzyme": "^2.9.1",
"eslint": "^4.6.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.1.0",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "^0.54.1",
"jest": "^21.0.2",
"jest-enzyme": "^3.8.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.2",
"rxact": "^1.0.0-beta.0",
"rxjs": "^5.4.3",
"webpack": "^3.5.6"
},
"jest": {
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"src"
],
"testMatch": [
"**/__tests__/**/?(*.)(spec|test).js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/"
]
},
"moduleRoots": [
"src"
],
"npmName": "rxact-react",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"dependencies": {
"hoist-non-react-statics": "^2.3.1"
}
}