-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.86 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "file-find-replace-cli",
"version": "0.3.1",
"description": "Replaces text in files, using a JSON file containing matches and replacements",
"main": "dist/index.js",
"bin": {
"find-replace": "dist/cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/svandriel/file-find-replace-cli.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist coverage",
"test": "jest",
"dev": "tsc -w",
"verify": "npm run test && npm run lint && npm run clean && npm run build",
"lint": "eslint \"src/**/*.{ts,json}\"",
"lint:fix": "eslint \"src/**/*.{ts,json}\" --fix",
"version": "npm run verify",
"prepublishOnly": "npm run verify"
},
"keywords": [
"find",
"replace",
"files",
"cli",
"command line"
],
"author": "Sander van Driel <sander.vandriel@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.2.1",
"escape-string-regexp": "^4.0.0",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"p-limit": "^3.1.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.6",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run verify"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix"
],
"**/*.json": [
"prettier --write"
]
},
"engines": {
"node": ">=10"
}
}