-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 851 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
34
35
36
{
"name": "companies-list",
"version": "0.0.6",
"description": "Companies data in csv format from fortune 1000 list",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/srinivasreddy/companies-list",
"bugs": "https://github.com/srinivasreddy/companies-list/issues",
"keywords": [
"webscraping",
"companies",
"fortune-500",
"data",
"puppeteer",
"csv"
],
"files": [
"lib/**/*"
],
"author": "Srinivas Reddy Thatiparthy <thatiparthysreenivas@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc"
},
"devDependencies": {
"@types/node": "^12.12.12",
"tslint": "^5.20.1"
},
"dependencies": {
"@types/puppeteer": "^2.0.1",
"objects-to-csv": "^1.3.5",
"puppeteer": "^2.0.0"
},
"prepare": "npm run build",
"prepublish": "tsc"
}