macoolka-stream
Version:
`macoolka-stream` is a library contains common stream functions.
53 lines (52 loc) • 1.15 kB
JSON
{
"name": "macoolka-stream",
"version": "0.3.4",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"author": "fastspeeed@gmail.com",
"scripts": {
"reinstall": "rm -rf node_modules/ && yarn install",
"clean": "rm -rf lib/ coverage/ ",
"test": "jest",
"build": "rm -rf lib/ && tsc ",
"prepush": "npm run test",
"coverage": "rimraf coverage && jest --coverage"
},
"dependencies": {
"fp-ts": "^2.12.1"
},
"devDependencies": {
"@jest/types": "^28.1.3",
"@types/jest": "^28.1.5",
"jest": "^28.1.3",
"ts-jest": "^28.0.6",
"typescript": "^4.7.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,tsx,ts}",
"!**/node_modules/**",
"!**/vendor/**"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(./src/*|\\.(test|spec))\\.(ts|tsx)$"
},
"keywords": [
"macoolka",
"typescript",
"functional-programming",
"stream"
],
"homepage": "https://github.com/macoolka/macoolka-stream",
"license": "MIT"
}