-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 2.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@frsource/frs-replace",
"version": "5.1.20",
"description": "Simple wrapper around javascript replace with CLI usage support!",
"bin": {
"frs-replace": "bin/cli.mjs"
},
"type": "module",
"main": "src/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"default": "./src/index.mjs",
"types": "./dist/index.d.mts"
},
"./sync": {
"default": "./src/sync.mjs",
"types": "./dist/sync.d.mts"
},
"./async": {
"default": "./src/async.mjs",
"types": "./dist/async.d.mts"
},
"./*": "./*.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FRSOURCE/frs-replace.git"
},
"author": "Jakub Freisler <FRSgit@users.noreply.github.com>",
"license": "MIT",
"packageManager": "pnpm@9.15.6",
"bugs": {
"url": "https://github.com/FRSOURCE/frs-replace/issues"
},
"homepage": "https://github.com/FRSOURCE/frs-replace#readme",
"files": [
"dist",
"bin/cli.mjs",
"src/*.mjs",
"package.json"
],
"keywords": [
"replace",
"cli",
"streams",
"stream",
"command-line",
"pipes",
"pipe",
"nodejs",
"replacement",
"regex",
"regexp",
"regular-expression",
"javascript"
],
"scripts": {
"typecheck": "tsc --project tsconfig.json --noEmit",
"release": "semantic-release",
"release:ci": "pnpm release --yes",
"build": "tsc --project tsconfig.json --declaration --emitDeclarationOnly",
"test": "vitest",
"coverage": "vitest --coverage",
"test:ci": "vitest run --coverage && vitest bench --run && TEST_TYPE=bench vitest run --allowOnly",
"eslint": "eslint .",
"prettier": "prettier . --check",
"lint": "pnpm eslint && pnpm prettier",
"fix": "pnpm eslint --fix && prettier . --write",
"bench": "vitest bench",
"test:bench": "TEST_TYPE=bench vitest"
},
"devDependencies": {
"@frsource/eslint-config": "1.33.0",
"@frsource/prettier-config": "1.21.0",
"@frsource/semantic-release-config": "^1.37.0",
"@types/node": "20.17.22",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "2.1.9",
"@vitest/ui": "2.1.9",
"eslint": "^9.2.0",
"execa": "^9.5.2",
"globals": "^15.14.0",
"globals-vitest": "^2.1.8",
"prettier": "^3.2.5",
"replace-in-file": "8.3.0",
"replace-string": "4.0.0",
"semantic-release": "^24.2.1",
"tmp-promise": "3.0.3",
"typescript": "^5.7.2",
"vitest": "2.1.9"
},
"dependencies": {
"fast-glob": "3.3.3",
"get-stdin": "9.0.0",
"yargs": "17.7.2"
},
"engines": {
"node": ">=20.0.0"
},
"funding": "https://buymeacoffee.com/frsource"
}