-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
84 lines (84 loc) · 2.03 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "linkedin-profile-scraper",
"version": "2.3.1",
"description": "LinkedIn profile scraper returning structured profile data in JSON. Works in 2020.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "ts-node-dev -r dotenv/config --inspect=9230 --respawn --transpileOnly ./src/examples/server.ts",
"build": "npx tsc -p tsconfig.production.json",
"test:watch": "NODE_ENV=test jest --watch --coverage",
"test": "NODE_ENV=test jest --coverage",
"update": "npx npm-check --update",
"release": "release-it"
},
"license": "ISC",
"dependencies": {
"all-the-cities": "^3.1.0",
"i18n-iso-countries": "^5.4.0",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"puppeteer": "^4.0.1",
"tree-kill": "^1.2.2",
"tslib": "^2.0.0"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^26.0.3",
"@types/moment-timezone": "^0.5.13",
"@types/node": "^14.0.14",
"@types/puppeteer": "^3.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jest": "^26.1.0",
"release-it": "^13.6.4",
"ts-jest": "^26.1.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.6",
"typescript-tslint-plugin": "^0.5.5"
},
"release-it": {
"git": {
"commit": true,
"tag": true,
"push": true
},
"hooks": {
"after:bump": "npx auto-changelog -p"
},
"npm": {
"publish": false
}
},
"jest": {
"globals": {
"NODE_ENV": "test"
},
"testEnvironment": "node",
"setupFiles": [
"dotenv/config"
],
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts?$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"collectCoverageFrom": [
"**/*.{ts,js,jsx,json,node}",
"!**/node_modules/**",
"!**/typings/**",
"!**/integration/**"
],
"testPathIgnorePatterns": [
".e2e.test.ts"
]
}
}