1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "p",
- "version": "0.0.0",
- "description": "A minimalist process manager.",
- "main": "dist/lib/index.js",
- "types": "./dist/lib/index.d.ts",
- "repository": "https://github.com/PreMiD/p",
- "author": "LewisTehMinerz",
- "license": "MPL-2.0",
- "private": false,
- "bin": "./dist/cli/index.js",
- "devDependencies": {
- "@commitlint/cli": "^8.3.5",
- "@commitlint/config-conventional": "^8.3.4",
- "@types/node": "^14.0.9",
- "commitizen": "^4.1.2",
- "commitlint": "^8.3.5",
- "cz-conventional-changelog": "3.2.0",
- "husky": "^4.2.5",
- "rimraf": "^3.0.2",
- "typescript": "^3.9.3"
- },
- "scripts": {
- "build": "rimraf dist/ && tsc -p tsconfig.cli.json && tsc -p tsconfig.lib.json && yarn dedupe-lib",
- "dedupe-lib": "rimraf dist/cli/lib && move dist/cli/cli dist/cli-tmp && rimraf dist/cli/ && move dist/cli-tmp dist/cli"
- },
- "config": {
- "commitizen": {
- "path": "./node_modules/cz-conventional-changelog"
- }
- },
- "husky": {
- "hooks": {
- "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
- }
- }
- }
|