-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 887 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 887 Bytes
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
{
"name": "mapped-replace",
"version": "1.0.3",
"description": "Performs a replacement on a string using a map",
"main": "lib/index.js",
"repository": "luvies/mapped-replace",
"author": "luvies",
"license": "MIT",
"dependencies": {
"escape-string-regexp": "^1.0.5"
},
"devDependencies": {
"@luvies/take": "^0.0.8",
"@types/chai": "^4.1.4",
"@types/escape-string-regexp": "^1.0.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.10.1",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"typescript": "^3.0.3"
},
"keywords": [
"map",
"mapped",
"replace",
"key",
"value",
"format"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**"
],
"all": true
}
}