@softwareventures/array
Version:
Pure functional array manipulation and traversal
78 lines (77 loc) • 2.24 kB
JSON
{
"name": "@softwareventures/array",
"version": "7.0.0",
"description": "Pure functional array manipulation and traversal",
"keywords": [
"array",
"functional",
"lambda",
"typescript"
],
"author": "Daniel Cassidy <mail@danielcassidy.me.uk>",
"homepage": "https://github.com/softwareventures/array",
"bugs": "https://github.com/softwareventures/array/issues",
"repository": "github:softwareventures/array",
"license": "ISC",
"scripts": {
"fix": "tsc --noEmit && eslint . --fix && prettier --write .",
"lint": "tsc --noEmit && eslint . && prettier --check .",
"pre-commit": "precise-commits",
"prepare": "husky install && tsc",
"semantic-release": "semantic-release",
"test": "ava"
},
"sideEffects": false,
"engines": {
"node": "^18 || >=20"
},
"dependencies": {
"@softwareventures/nullable": "^1.0.0 || ^2.0.0 || ^3.0.0",
"@softwareventures/ordered": "^1.1.0 || ^2.0.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@softwareventures/eslint-config": "7.1.4",
"@softwareventures/precise-commits": "3.0.30",
"@softwareventures/prettier-config": "4.0.0",
"@softwareventures/semantic-release-config": "4.0.0",
"@softwareventures/tsconfig": "7.1.0",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"ava": "5.3.1",
"conventional-changelog-conventionalcommits": "7.0.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "46.9.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-sonarjs": "0.23.0",
"husky": "8.0.3",
"prettier": "2.8.8",
"semantic-release": "22.0.10",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"eslintConfig": {
"root": true,
"extends": "@softwareventures"
},
"prettier": "@softwareventures/prettier-config",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"release": {
"extends": "@softwareventures/semantic-release-config"
}
}