peowly-commands
Version:
Helper for handling commands with peowly
80 lines (79 loc) • 2.48 kB
JSON
{
"name": "peowly-commands",
"version": "1.1.0",
"description": "Helper for handling commands with peowly",
"homepage": "http://github.com/voxpelli/peowly-commands",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/peowly-commands.git"
},
"keywords": [],
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"license": "MIT",
"engines": {
"node": ">=18.6.0"
},
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"files": [
"/index.js",
"/index.d.ts",
"/index.d.ts.map",
"lib/*.js",
"lib/*.d.ts",
"lib/*.d.ts.map"
],
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build": "run-s build:*",
"check:installed-check": "installed-check -i @voxpelli/eslint-config -i eslint",
"check:knip": "knip",
"check:lint": "eslint --report-unused-disable-directives .",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 99 --ignore-files 'test/*'",
"check": "run-s clean && run-p check:*",
"clean:declarations-top": "rm -rf $(find . -maxdepth 1 -type f -name '*.d.ts*' ! -name 'index.d.ts')",
"clean:declarations-lib": "rm -rf $(find lib -type f -name '*.d.ts*' ! -name '*-types.d.ts')",
"clean": "run-p clean:*",
"prepare": "husky",
"prepublishOnly": "run-s build",
"test:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.js'",
"test-ci": "run-s test:*",
"test": "run-s check test:*"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "^18.19.37",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@voxpelli/eslint-config": "^20.0.0-beta.1",
"@voxpelli/tsconfig": "^12.0.1",
"c8": "^10.1.2",
"chai": "^4.4.1",
"chalk": "^5.3.0",
"eslint": "^9.5.0",
"husky": "^9.0.11",
"installed-check": "^9.0.0",
"knip": "^5.22.0",
"markdown-or-chalk": "^0.2.0",
"mocha": "^10.4.0",
"npm-run-all2": "^6.2.0",
"ora": "^8.0.1",
"pony-cause": "^2.1.10",
"redent": "^4.0.0",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"trim-newlines": "^5.0.0",
"type-coverage": "^2.29.0",
"typescript": "~5.5.2",
"validate-conventional-commit": "^1.0.3"
},
"dependencies": {
"normalize-package-data": "^6.0.1",
"peowly": "^1.3.1",
"read-package-up": "^11.0.0"
}
}