-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.43 KB
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
{
"name": "fris",
"version": "1.1.0",
"description": "A command line tool to find and replace text within syntax scopes.",
"main": "/dist/index.js",
"scripts": {
"dev": "npx tsc --watch",
"lint": "eslint --ext .js,.ts . --ignore-path .gitignore --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint && npm run format",
"preversion": "npm run && npm run lint && npm run format"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"find",
"replace",
"syntax"
],
"files": [
"dist"
],
"bin": "dist/index.js",
"type": "module",
"author": "Brett Ormsby",
"license": "MIT",
"dependencies": {
"glob": "^10.3.10",
"kolorist": "^1.8.0",
"log-update": "^6.0.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"shiki": "^1.0.0",
"supports-color": "^9.4.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/minimist": "^1.2.2",
"@types/prompts": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}