-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.77 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.77 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
{
"name": "search-replace",
"version": "0.0.0-development",
"description": "A simple tool to help you search/replace throughout a codebase.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"search-replace": "dist/index.js"
},
"scripts": {
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"test": "jest",
"test:watch": "jest --watchAll",
"build": "tsc",
"watch": "tsc -w",
"start": "yarn link && nodemon",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/beeman/search-replace.git"
},
"keywords": [
"TypeScript",
"Package",
"Starter"
],
"author": {
"name": "Bram Borggreve",
"email": "borggreve@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/beeman/search-replace/issues"
},
"homepage": "https://github.com/beeman/search-replace#readme",
"husky": {
"hooks": {
"pre-commit": "yarn lint && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn lint && npm test"
}
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/jest": "26.0.14",
"@types/node": "12.12.20",
"@types/yargs": "15.0.10",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"eslint": "7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.3.0",
"jest": "26.6.3",
"nodemon": "2.0.6",
"prettier": "2.2.0",
"semantic-release": "17.3.0",
"ts-jest": "26.4.4",
"typescript": "^3.7.2"
},
"files": [
"dist/**/*"
],
"dependencies": {
"globby": "^11.0.0",
"replace-in-file": "^5.0.0",
"yargs": "^15.0.2"
}
}