-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 958 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 958 Bytes
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
{
"name": "recipe-reader",
"version": "0.1.0",
"description": "Reads recipes from HTML pages, based on the python package `recipe-reader`.",
"main": "dist/index.js",
"scripts": {
"test": "mocha dist/test",
"coverage": "nyc mocha dist/test"
},
"author": "dudeami",
"license": "MIT",
"dependencies": {
"cross-env": "^7.0.3",
"cross-fetch": "^3.1.5",
"html-entities": "^2.3.3",
"jsdom": "^19.0.0",
"striptags": "^3.2.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/jsdom": "^16.2.14",
"@types/mocha": "^9.1.0",
"@webpack-cli/generators": "^3.0.2",
"chai": "^4.3.7",
"esm": "^3.2.25",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.7.0",
"typescript": "^4.9.5",
"webpack": "^5.81.0",
"webpack-cli": "^4.10.0"
}
}