result/package.json

45 lines
1.3 KiB
JSON

{
"name": "@cmdln/result",
"author": "cmdln",
"version": "0.1.2",
"description": "Try type for functional programming plus useful utilities.",
"repository": "https://git.cmdln.net/cmdln/result",
"license": "MIT",
"packageManager": "yarn@3.1.1",
"main": "dist/index.js",
"types": "types/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"clean": "yarn cache clean && rm -rf dist",
"lint": "yarn run eslint .",
"lint:fix": "yarn run eslint --fix .",
"format:check": "yarn run prettier --check src/**",
"format": "yarn run prettier --write src/**",
"test": "yarn jest",
"pre:push": "yarn lint && yarn format:check && yarn compile && yarn test && yarn outdated -c -s minor",
"compile": "yarn tsc -b"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash.isnil": "^4.0.9",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"lerna": "^8.1.5",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"dependencies": {
"lodash.isnil": "^4.0.0"
},
"files": [
"dist/*"
]
}