UNPKG

@segment/analytics-generic-utils

Version:

This monorepo's version of "lodash". This package contains shared generic utilities that can be used within the ecosystem. This package should not have dependencies, and should not contain any references to the Analytics domain.

40 lines (39 loc) 1.15 kB
{ "name": "@segment/analytics-generic-utils", "version": "1.2.0", "repository": { "type": "git", "url": "https://github.com/segmentio/analytics-next", "directory": "packages/generic-utils" }, "license": "MIT", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "files": [ "dist/", "src/", "!**/__tests__/**", "!*.tsbuildinfo", "LICENSE" ], "sideEffects": false, "scripts": { ".": "yarn run -T turbo run --filter=@segment/analytics-generic-utils", "test": "yarn jest", "lint": "yarn concurrently 'yarn:eslint .' 'yarn:tsc --noEmit'", "build": "yarn concurrently 'yarn:build:*'", "build:esm": "yarn tsc -p tsconfig.build.json", "build:cjs": "yarn tsc -p tsconfig.build.json --outDir ./dist/cjs --module commonjs", "watch": "yarn build:esm --watch", "watch:test": "yarn test --watch", "tsc": "yarn run -T tsc", "eslint": "yarn run -T eslint", "concurrently": "yarn run -T concurrently", "jest": "yarn run -T jest" }, "packageManager": "yarn@3.4.1", "dependencies": { "tslib": "^2.4.1" } }