-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 786 Bytes
/
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
{
"name": "object-html-scrubber",
"version": "1.0.0",
"description": "strip out html tags from strings nested in javascript objects",
"main": "index.js",
"scripts": {
"test": "ava tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mitchellst/object-html-scrubber.git"
},
"keywords": [
"json",
"html",
"parse"
],
"author": "Mitchell Stoutin",
"license": "MIT",
"bugs": {
"url": "https://github.com/mitchellst/object-html-scrubber/issues"
},
"homepage": "https://github.com/mitchellst/object-html-scrubber#readme",
"devDependencies": {
"ava": "^0.16.0"
},
"dependencies": {
"cheerio": "^0.22.0",
"escape-html": "^1.0.3",
"lodash.isstring": "^4.0.1",
"object-comb": "^1.0.2"
}
}