-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 778 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 778 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
{
"name": "node-deep-replace",
"version": "0.1.0",
"description": "This library helps you to execute a replacement function in every string element of an object, at any deepness.",
"main": "deepReplace.js",
"scripts": {
"test": "mocha deepReplace.unit.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joviwap/node-deep-replace.git"
},
"keywords": [
"deep",
"replace",
"string"
],
"author": "José Vicente Sogorb",
"license": "MIT",
"bugs": {
"url": "https://github.com/joviwap/node-deep-replace/issues"
},
"homepage": "https://github.com/joviwap/node-deep-replace#readme",
"dependencies": {
"async": "^2.0.1",
"lodash": "^4.14.0"
},
"devDependencies": {
"chai": "^3.5.0"
}
}