-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.34 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
{
"name": "@simplyhexagonal/multi-replace",
"version": "1.1.1",
"description": "Functions to easily perform various replace operations on a Javascript/Typescript string",
"private": false,
"main": "dist/multi-replace.js",
"types": "dist/multi-replace.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/simplyhexagonal/multi-replace"
},
"contributors": [
{
"name": "Jean M. Lescure",
"email": "[email protected]",
"url": "https://simplyhexagonal.org/"
}
],
"license": "Apache-2.0",
"scripts": {
"test": "jest",
"build": "./scripts/build",
"release": "release-it"
},
"release-it": {
"git": {
"changelog": "auto-changelog --stdout -l false -u -t ./assets/changelog-compact.hbs"
},
"hooks": {
"after:bump": "./scripts/release"
},
"npm": {
"publish": false
}
},
"files": [
"dist",
"runkit.js",
"README.md",
"package.json"
],
"runkitExampleFilename": "./runkit.js",
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"auto-changelog": "^2.4.0",
"esbuild": "^0.19.3",
"jest": "^29.7.0",
"refup": "^1.1.0",
"release-it": "^16.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}