npm-prepare-dist
Version:
Prepare library for NPM distribution
54 lines • 1.63 kB
JSON
{
"name": "npm-prepare-dist",
"version": "0.5.0",
"description": "Prepare library for NPM distribution",
"main": "./index.js",
"author": "BART! <bart@bartweb.cz>",
"bin": {
"npm-prepare-dist": "index.js"
},
"scripts": {
"start": "tsc -w",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "node . -s postinstall",
"tsc": "tsc",
"demo": "ts-node demo",
"lint": "eslint ./src/**/**/* --fix",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"postversion": "git push && git push --follow-tags",
"publish:next": "yarn && yarn build && npm publish --folder dist --tag beta",
"release:beta": "npm version prerelease -m \"chore(update): prelease %s β\"",
"release:patch": "git checkout master && npm version patch -m \"chore(update): patch release %s 🐛 \"",
"release:minor": "git checkout master && npm version minor -m \"chore(update): release %s 🚀\"",
"release:major": "git checkout master && npm version major -m \"chore(update): major release %s 💥 \"",
"prepare": "husky"
},
"dependencies": {
"minimist": "^1.2.6"
},
"repository": {
"url": "git+https://github.com/bartholomej/npm-prepare-dist.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bartholomej/npm-prepare-dist/issues"
},
"homepage": "https://github.com/bartholomej/npm-prepare-dist#readme",
"keywords": [
"npm",
"develop",
"prepare",
"dist",
"node",
"typescript",
"build"
],
"engines": {
"node": ">= 14"
},
"license": "MIT",
"module": "./index.js",
"types": "./index.d.ts"
}