Skip to content

Commit

Permalink
Merge pull request #10 from fluture-js/avaq/maintenance
Browse files Browse the repository at this point in the history
Maintenance
  • Loading branch information
Avaq authored Sep 8, 2020
2 parents f44687c + 88d6e0c commit d099226
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "fluture-node",
"version": "2.1.0",
"description": "FP-style HTTP and streaming utils for Node based on Fluture",
"tags": [
"keywords": [
"buffer",
"events",
"fluture",
Expand All @@ -16,6 +16,13 @@
"type": "module",
"main": "index.cjs",
"module": "index.js",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
},
"./index.js": "./index.js"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"codecov": "codecov",
Expand All @@ -39,12 +46,12 @@
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"fluture": ">=12.0.0 <13.0.0"
"fluture": ">=12.0.0 <14.0.0"
},
"devDependencies": {
"c8": "^7.1.0",
"codecov": "^3.2.0",
"fluture": "^12.2.0",
"fluture": "^13.0.0",
"oletus": "^3.0.0",
"rollup": "^2.0.0",
"sanctuary-scripts": "^4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import http from 'http';
import {EventEmitter} from 'events';
import * as fl from 'fluture/index.js';
import * as fl from 'fluture';
import test from 'oletus';
import {Readable} from 'stream';
import {equivalence, equality as eq} from 'fluture/test/assertions.js';
Expand Down

0 comments on commit d099226

Please sign in to comment.