-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
66 lines (66 loc) · 1.76 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "linkedin-client",
"version": "0.1.1",
"description": "Linkedin HTTP client to retrieve data about individuals or companies",
"main": "index.js",
"scripts": {
"test": "eslint ./src && NODE_ENV=test mocha src/tests --timeout 60000 --bail",
"start": "NODE_ENV=dev nodemon --ignore 'assets/*' src/server.js",
"forever": "NODE_ENV=production forever --id linkedin start src/server.js",
"build": "webpack --mode production",
"dev-build": "webpack --watch=true --mode development",
"lint": "eslint ./src --ext .js",
"lint:fix": "eslint ./src --ext .js --fix",
"prettier": "prettier './**/*.js'",
"prettier:write": "prettier --write './**/*.js'"
},
"bin": {
"linkedin-client": "./src/cli.js"
},
"author": "Coya",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bulma": "^0.7.1",
"chai": "^4.1.2",
"css-loader": "^3.4.2",
"eslint": "^7.32.0",
"express": "^4.17.1",
"mocha": "^9.1.2",
"node-sass": "^6.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.4.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"sass-loader": "^7.0.1",
"simple-mock": "^0.8.0",
"style-loader": "^0.21.0",
"supertest": "^6.1.6",
"webpack": "^5.58.0",
"webpack-cli": "^4.9.0",
"whatwg-fetch": "^2.0.4"
},
"dependencies": {
"@coya/logger": "0.0.5",
"cheerio": "^1.0.0-rc.3",
"html-entities": "^1.2.1",
"node-fetch": "^2.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Cooya/Linkedin-Client.git"
},
"keywords": [
"linkedin",
"client",
"scrap",
"scraper",
"crawl",
"crawler",
"leads",
"api"
]
}