-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 981 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 981 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
{
"name": "content_scraper",
"version": "1.0.33",
"description": "An npm Package for Node.js using a third party npm package to scrape content from the site. To create a csv file",
"main": "./src/scraper.js",
"dependencies": {
"json2csv": "^3.7.0",
"log": "^1.4.0",
"x-ray": "^2.3.0"
},
"devDependencies": {
"eslint": "^3.6.0",
"uglify-js": "^2.7.3"
},
"scripts": {
"test": "npm run lint",
"lint": "eslint scraper.js",
"initialize": "eslint --init",
"patch": "npm version patch",
"build_patch": "npm run lint && npm run patch",
"deploy_patch": "npm run build_patch && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/jackton1/Content-Scraper-Nodejs.git"
},
"keywords": [
"content",
"scraper",
"php",
"json",
"website"
],
"author": "Tonye Jack",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackton1/Content-Scraper-Nodejs/issues"
}
}