UNPKG

1.46 kBJSONView Raw
1{
2 "name": "fuzz-run",
3 "version": "3.0.0",
4 "description": "Run all your NPM scripts more easily with fuzzy matching",
5 "type": "module",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/sinedied/fuzz-run.git"
9 },
10 "exports": "./index.js",
11 "bin": {
12 "fr": "./bin/fr.js",
13 "nr": "./bin/fr.js"
14 },
15 "scripts": {
16 "lint": "xo",
17 "lint:fix": "xo --fix",
18 "test": "xo && jest",
19 "release:check": "semantic-release --dry-run"
20 },
21 "keywords": [
22 "npm",
23 "run",
24 "runner",
25 "scripts",
26 "yarn",
27 "fuzzy",
28 "fuzz",
29 "cli",
30 "helper"
31 ],
32 "author": {
33 "name": "Yohan Lasorsa",
34 "url": "https://twitter.com/sinedied"
35 },
36 "license": "MIT",
37 "homepage": "https://github.com/sinedied/fuzz-run",
38 "bugs": {
39 "url": "https://github.com/sinedied/fuzz-run/issues"
40 },
41 "engines": {
42 "node": ">=18"
43 },
44 "dependencies": {
45 "chalk-template": "^1.1.0",
46 "cross-spawn": "^7.0.3",
47 "fuzzysort": "^2.0.4"
48 },
49 "devDependencies": {
50 "jest": "^29.7.0",
51 "semantic-release": "^22.0.12",
52 "semantic-release-npm-github": "^5.0.0",
53 "xo": "^0.56.0"
54 },
55 "prettier": {
56 "trailingComma": "none",
57 "bracketSpacing": true
58 },
59 "xo": {
60 "space": true,
61 "prettier": true,
62 "ignore": [
63 "index.test.js"
64 ]
65 },
66 "release": {
67 "extends": "semantic-release-npm-github",
68 "branches": "main"
69 },
70 "files": [
71 "bin",
72 "index.js"
73 ]
74}