-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.9 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
{
"name" : "@mawngo/html-parser",
"version" : "1.2.2",
"description" : "Parse html to json object using predefined json schema.",
"main" : "index.js",
"module" : "esm/index.js",
"types" : "index.d.ts",
"type" : "commonjs",
"scripts" : {
"start" : "tsc --p tsconfig.build.json && node dist/index.js",
"dev" : "ts-node src/index.ts",
"build" : "tsc -p tsconfig.build.json && tsc -p tsconfig.build-esm.json && node build.js",
"lint" : "eslint --fix --ext .js,.ts .",
"test" : "jest --coverage",
"deploy" : "npm publish ./dist --access public"
},
"engines" : {
"npm" : ">=8.0.0",
"node" : ">=16.0.0"
},
"repository" : {
"type" : "git",
"url" : "git+https://github.com/mawngo/html-parser-js.git"
},
"keywords" : [
"web",
"scrape",
"parser",
"html",
"structure"
],
"author" : "mawngo",
"license" : "MIT",
"bugs" : {
"url" : "https://github.com/mawngo/html-parser-js/issues"
},
"homepage" : "https://github.com/mawngo/html-parser-js#readme",
"devDependencies" : {
"@types/jest" : "^27.4.0",
"@types/node" : "^16.10.2",
"@types/numeral" : "^2.0.2",
"@typescript-eslint/eslint-plugin" : "^5.9.1",
"@typescript-eslint/parser" : "^5.9.1",
"axios" : "1.6.0",
"eslint" : "^8.7.0",
"eslint-plugin-import" : "^2.25.4",
"jest" : "^27.4.7",
"ts-jest" : "^27.1.3",
"ts-node" : "^10.4.0",
"typescript" : "^4.4.3"
},
"jest" : {
"transform" : {
"^.+\\.(t|j)s$" : "ts-jest"
},
"testEnvironment" : "node",
"moduleNameMapper" : {
"^(\\.{1,2}/.*)\\.js$" : "$1"
}
},
"volta" : {
"node" : "16.13.2",
"npm" : "8.3.1"
},
"exports" : {
"." : {
"import" : "./esm/index.js",
"require" : "./index.js"
}
},
"dependencies" : {
"@mawngo/pipe-parser" : "^1.5.1",
"cheerio" : "^1.0.0-rc.10",
"dayjs" : "1.10.7",
"numeral" : "2.0.6"
}
}