-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 843 Bytes
/
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
{
"name": "html-recipe-parser",
"version": "1.0.15",
"description": "Parse recipes from web pages using schema.org/recipe metadata",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "ts-node test.ts",
"npm-publish": "tsc && npm version patch && npm publish"
},
"author": "Murilo Schünke",
"homepage": "https://github.com/mschunke/html-recipe-parser",
"repository": {
"type": "git",
"url": "https://github.com/mschunke/html-recipe-parser.git"
},
"license": "MIT",
"devDependencies": {
"@types/humanize-duration": "^3.27.1",
"ts-node": "^10.8.1"
},
"dependencies": {
"@types/node-fetch": "^2.6.2",
"humanize-duration": "^3.27.2",
"node-fetch": "^2.6.6",
"node-html-parser": "^5.3.3",
"parse-iso-duration": "^1.1.0"
}
}