-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.31 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
{
"name": "@frsource/frs-replace",
"version": "5.1.10",
"description": "Simple wrapper around javascript replace with CLI usage support!",
"bin": {
"frs-replace": "bin/cli.mjs"
},
"type": "module",
"main": "dist/index.mjs",
"exports": {
".": "./src/index.mjs",
"./sync": "./src/sync.mjs",
"./async": "./src/async.mjs",
"./*": "./*.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FRSOURCE/frs-replace.git"
},
"author": "Jakub Freisler <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"bugs": {
"url": "https://github.com/FRSOURCE/frs-replace/issues"
},
"homepage": "https://github.com/FRSOURCE/frs-replace#readme",
"files": [
"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",
"release": "semantic-release",
"release:ci": "pnpm release --yes",
"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.16",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"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.8"
},
"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"
}