forked from ageitgey/node-unfluff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.15 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
{
"name": "unfluffjs",
"version": "3.3.3",
"description": "A web page content extractor",
"homepage": "https://github.com/yknx4/node-unfluff",
"keywords": [
"content extraction",
"html",
"scraping",
"scrape",
"web page",
"body text"
],
"authors": [
{
"name": "Adam Geitgey",
"email": "[email protected]"
},
{
"name": "Ale Ornelas",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/yknx4/node-unfluff"
},
"bugs": "https://github.com/yknx4/node-unfluff/issues",
"main": "lib/unfluff.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"lodash": "^4.17.20"
},
"devDependencies": {
"commonjs-everywhere": "0.9.x",
"deep-equal": "~0.2.1",
"mocha": "^8.1.3",
"scopedfs": "~0.1.0",
"semver": "~4.3.2",
"ts-migrate": "^0.1.7"
},
"scripts": {
"build": "npx rimraf lib && cp -rf src lib",
"test": "npx mocha -u tdd -r test-setup.js"
},
"licenses": [
{
"type": "Apache",
"url": "https://github.com/yknx4/node-unfluff/blob/master/LICENSE"
}
]
}