-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.05 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
{
"name": "tiny-replace-files",
"version": "1.0.2",
"description": "tiny replace string/regex in files.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build-fast": "tsup src/index.ts --dts --format cjs,esm --minify",
"build": "yarn build-fast",
"watch": "tsup src/index.ts --watch",
"test": "uvu -r sucrase/register --ignore fixture",
"prepublishOnly": "yarn test && yarn build-fast",
"prettier": "prettier --write src/*",
"lint": "eslint",
"build:types": "tsc --emitDeclarationOnly",
"commit-msg": "commitlint -e $GIT_PARAMS",
"commit-name": "node .gitauthor.js",
"pre-push": "npx branch-name-lint",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "https://github.com/Rabbitzzc/tiny-replace-files"
},
"keywords": [
"js-npm-template",
"npm-template",
"js"
],
"author": "Rabbitzzc",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rabbitzzc/tiny-replace-files/issues"
},
"homepage": "https://github.com/Rabbitzzc/tiny-replace-files",
"engines": {
"node": ">=10.0.0"
},
"files": [
"dist/index.js",
"dist/index.mjs",
"dist/index.d.ts"
],
"peerDependencies": {
"fast-glob": "3.2.7"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/node": "17.0.5",
"@typescript-eslint/eslint-plugin": "4.1.1",
"@typescript-eslint/parser": "4.1.1",
"all-contributors-cli": "6.17.2",
"branch-name-lint": "^1.4.0",
"eslint": "7.9.0",
"eslint-config-alloy": "4.4.0",
"husky": "^4.2.5",
"prettier": "2.1.1",
"tsup": "5.11.7",
"typescript": "4.0.2",
"uvu": "0.5.2"
}
}