-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 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
{
"name": "string-multiple-replace",
"version": "1.1.0",
"description": "Replace multiple substrings in a string sequentially",
"author": "iChengbo",
"scripts": {
"build": "rollup -c",
"test": "mocha",
"test:coverage": "nyc mocha test/**/*.js",
"prepare": "husky install"
},
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js"
}
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"@babel/register": "^7.24.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^5.1.1",
"husky": "^9.0.11",
"mocha": "^10.6.0",
"nyc": "^17.0.0",
"rollup": "^4.18.1"
},
"keywords": [
"replace",
"string",
"multiple",
"object",
"sequence",
"match",
"replacer"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/iChengbo/string-multiple-replace.git"
},
"bugs": {
"url": "https://github.com/iChengbo/string-multiple-replace/issues"
},
"homepage": "https://github.com/iChengbo/string-multiple-replace#readme"
}