Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

array-fp-utils

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

array-fp-utils - npm Package Compare versions

Comparing version 0.3.0 to 0.3.3

dist/cjs/groupBy/groupBy.js

2

LICENSE.md

@@ -1,2 +0,2 @@

Copyright 2022 Causaly
Copyright 2022-2023 Causaly

@@ -3,0 +3,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

{
"name": "array-fp-utils",
"version": "0.3.0",
"version": "0.3.3",
"description": "Array utilities for functional programming in TypeScript.",

@@ -40,30 +40,31 @@ "keywords": [

"sideEffects": false,
"types": "./build/index.d.ts",
"main": "./build/node/cjs/index.js",
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/index.js",
"exports": {
".": {
"node": {
"import": "./build/node/esm/index.js",
"require": "./build/node/cjs/index.js"
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"default": "./build/browser/esm/index.js"
"default": "./dist/esm/index.js"
}
},
"files": [
"build"
"dist"
],
"engines": {
"node": "^14.17 || >=16.0.0"
"node": ">=16.0.0"
},
"scripts": {
"build:node-cjs": "swc lib --config-file ./config/node-cjs.json -d build/node/cjs",
"build:node-esm": "swc lib --config-file ./config/node-esm.json -d build/node/esm",
"build:browser-esm": "swc lib --config-file ./config/browser-esm.json -d ./build/browser/esm",
"build": "rimraf build && concurrently \"tsc -p tsconfig.json\" \"yarn build:node-cjs\" \"yarn build:node-esm\" \"yarn build:browser-esm\"",
"typecheck": "tsc --noEmit",
"build:cjs": "tsc -p ./tsconfig.build-cjs.json",
"build:esm": "tsc -p ./tsconfig.build-esm.json",
"build:types": "tsc -p ./tsconfig.build-types.json",
"build": "rimraf dist && concurrently \"npm run build:types\" \"npm run build:esm\" \"npm run build:cjs\"",
"lint": "eslint lib --ext .ts",
"format": "prettier --config ./.prettierrc --ignore-path .gitignore -w .",
"test": "jest --config jest.config.ts",
"coverage": "jest --config jest.config.ts --coverage",
"test": "jest",
"coverage": "jest --coverage",
"changeset": "changeset",
"prerelease": "yarn build && yarn test",
"prerelease": "npm run build && npm run test",
"release": "changeset publish"

@@ -88,4 +89,2 @@ },

"@commitlint/config-conventional": "^17.1.0",
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.146",
"@types/jest": "^29.0.3",

@@ -107,8 +106,4 @@ "@types/node": "^18.7.14",

"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"dependencies": {
"@swc/helpers": "^0.3.2"
"typescript": "^5.0.4"
}
}

@@ -21,3 +21,3 @@ # array-fp-utils

- Node.js v.14+
- Node.js v.16+

@@ -24,0 +24,0 @@ ## API

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc