UNPKG

@c4312/matcha

Version:

A caffeine driven, simple command line for benchmarking

52 lines (51 loc) 1.38 kB
{ "name": "@c4312/matcha", "version": "1.3.1", "description": "A caffeine driven, simple command line for benchmarking", "main": "dist/index.js", "bin": { "matcha": "dist/cli.js" }, "repository": { "type": "git", "url": "git+https://github.com/connor4312/matcha.git" }, "bugs": { "url": "https://github.com/connor4312/matcha/issues" }, "homepage": "https://github.com/connor4312/matcha#readme", "scripts": { "prepublishOnly": "npm run compile", "compile": "tsc", "watch": "tsc --watch", "test:fmt": "prettier --list-different \"src/**/*.ts\" \"*.md\"", "test:unit": "mocha dist/**/*.test.js", "test": "npm run test:unit && npm run test:fmt", "fmt": "prettier --write \"src/**/*.ts\" \"*.md\"" }, "author": "Connor Peet <connor@peet.io>", "license": "MIT", "dependencies": { "benchmark": "^2.1.4", "chalk": "^3.0.0", "commander": "^4.1.0", "microtime": "^3.0.0" }, "devDependencies": { "@types/benchmark": "^1.0.31", "@types/chai": "^4.2.7", "@types/commander": "^2.12.2", "@types/minimist": "^1.2.0", "@types/mocha": "^5.2.7", "@types/node": "^12.12.21", "chai": "^4.2.0", "mocha": "^7.0.0", "prettier": "^1.19.1", "typescript": "^3.7.3" }, "prettier": { "printWidth": 100, "singleQuote": true, "trailingComma": "all" } }