-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.42 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.42 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
{
"name": "dom-extractor",
"version": "0.0.14",
"description": "A remote HTML page DOM extractor. Extracts what you want from a remote page or a string, using selectors. Based on request for fetching, cheerios for parsing, cssom for checking css rules and juice for inlining css.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "./node_modules/.bin/eslint .",
"cover": "CONSOLE_LOGGING=false ./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/_mocha test --recursive --timeout=10000 --exit",
"test": "npm run lint && ./node_modules/jasmine-node/bin/jasmine-node test"
},
"repository": {
"type": "git",
"url": "https://github.com/dial-once/node-dom-extractor.git"
},
"keywords": [
"dom",
"extract",
"html",
"remote"
],
"author": "Dial Once",
"license": "MIT",
"bugs": {
"url": "https://github.com/dial-once/node-dom-extractor/issues"
},
"homepage": "https://github.com/dial-once/node-dom-extractor",
"dependencies": {
"cheerio": "^0.22.0",
"cssom": "^0.3.0",
"juice": "^4.0.2",
"node-cache": "^4.1.0",
"request": "^2.62.0",
"url": "^0.11.0"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"jasmine-node": "^1.14.5"
}
}