rxact-xstream
Version:
Xstream binding for Rxact.
98 lines (97 loc) • 2.68 kB
JSON
{
"name": "rxact-xstream",
"version": "1.0.0-beta.1",
"description": "Xstream binding for Rxact.",
"keywords": [
"xstream",
"rxact"
],
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"repository": "git@github.com:Darmody/rxact-xstream.git",
"author": "Darmody <eterlf41@gmail.com>",
"bugs": {
"url": "https://github.com/Darmody/rxact-xstream/issues"
},
"license": "MIT",
"private": false,
"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-xstream.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/rxact-xstream.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"
},
"files": [
"README.md",
"es",
"lib",
"dist"
],
"peerDependencies": {
"rxact": "^1.0.0-beta.0",
"xstream": "^11.0.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",
"coveralls": "^3.0.0",
"cross-env": "^5.0.5",
"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",
"flow-bin": "^0.54.1",
"jest": "^21.0.2",
"rimraf": "^2.6.2",
"rxact": "^1.0.0-beta.0",
"webpack": "^3.5.6",
"xstream": "^11.0.0"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"src"
],
"testMatch": [
"**/__tests__/**/?(*.)(spec|test).js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/"
]
},
"moduleRoots": [
"src"
],
"npmName": "rxact-xstream",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}