-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.49 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
{
"name": "cheerio-json-mapper",
"version": "1.0.4",
"description": "Extract data from HTML using JSON mapping with custom pipe functionality",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "ts-node-dev src",
"start": "npm run dev",
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denkan/cheerio-json-mapper.git"
},
"keywords": [
"cheerio",
"json",
"mapping",
"html to json",
"html to js",
"map html to json",
"map html to js",
"convert html to json",
"extract html",
"format html",
"format json"
],
"author": "Dennis Nyström",
"license": "MIT",
"bugs": {
"url": "https://github.com/denkan/cheerio-json-mapper/issues"
},
"homepage": "https://github.com/denkan/cheerio-json-mapper#readme",
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.2"
},
"dependencies": {
"cheerio": "^1.0.0"
}
}