my-only-either
Version:
Only support either interface
67 lines • 2.14 kB
JSON
{
"name": "my-only-either",
"version": "1.3.0",
"description": "Only support either interface",
"repository": {
"type": "git",
"url": "git+https://github.com/imjuni/my-only-either.git"
},
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf ./dist",
"prerollup:dev": "npm run clean",
"rollup:dev": "cross-env NODE_ENV=production rollup --config ./.configs/rollup.config.dev.ts --configPlugin ts",
"prerollup:prod": "npm run clean",
"rollup:prod": "cross-env NODE_ENV=production rollup --config ./.configs/rollup.config.prod.ts --configPlugin ts",
"prepub": "npm run rollup:prod",
"pub": "npm publish --registry http://localhost:8901 --force",
"prepub:prod": "npm run rollup:prod",
"pub:prod": "npm publish",
"lint": "eslint --ext ts,tsx ."
},
"keywords": [
"either",
"typescript"
],
"types": "./dist/esm/index.d.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"author": "ByungJoon Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/imjuni/my-only-either/issues"
},
"homepage": "https://github.com/imjuni/my-only-either#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@tsconfig/node14": "^1.0.1",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"prettier-eslint": "^14.0.2",
"read-pkg": "^5.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"ts-jest": "^28.0.0",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.8.2"
}
}