Outlook_Addin_LLM/node_modules/neverthrow/package.json

53 lines
1.5 KiB
JSON

{
"name": "neverthrow",
"version": "3.2.0",
"description": "Stop throwing errors, and instead return Results!",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint ./src --ext .ts",
"format": "prettier --write 'src/**/*.ts?(x)' && npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"clean": "rm -rf ./dist ./tmp",
"build": "npm run clean && rollup --config && mv tmp/*.js dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supermacro/neverthrow.git"
},
"author": "Giorgio Delgado",
"license": "MIT",
"bugs": {
"url": "https://github.com/supermacro/neverthrow/issues"
},
"homepage": "https://github.com/supermacro/neverthrow#readme",
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-typescript": "7.12.7",
"@types/jest": "26.0.19",
"@types/node": "14.14.20",
"@typescript-eslint/eslint-plugin": "4.12.0",
"@typescript-eslint/parser": "4.12.0",
"babel-jest": "26.6.3",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-prettier": "3.3.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"rollup": "2.35.1",
"rollup-plugin-dts": "2.0.1",
"rollup-plugin-typescript2": "0.29.0",
"ts-jest": "26.4.4",
"typescript": "4.1.3"
},
"keywords": [
"typescript",
"functional",
"fp",
"error"
]
}