-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.37 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "page-extractor",
"version": "1.0.8",
"description": "Npm package for extract data from page-like api",
"bugs": {
"url": "https://github.com/datfcknadam/page-extractor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/datfcknadam/page-extractor.git"
},
"license": "MIT",
"author": "egor.kulikov.dev@gmail.com",
"maintainers": [
{
"name": "Egor Kulikov",
"email": "egor.kulikov.dev@gmail.com"
}
],
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"LICENCE",
"package.json"
],
"scripts": {
"build": "npx --package typescript tsc",
"test": "jest --coverage",
"test:cov": "jest --ci --json --coverage --testLocationInResults --outputFile=report.json"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=0.4.0"
},
"keywords": [
"api",
"page",
"exctractor",
"fetch"
]
}