-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "recipes-nodejs",
"version": "1.0.4",
"description": "NodeJS recipe publisher, converts markdown/text recipe files into well formatted HTML.",
"main": "build.js",
"type": "module",
"scripts": {
"build:bundles": "webpack --mode production",
"build": "npm run build:bundles && node ./build.js",
"dev": "nodemon --inspect --ignore output/ -e js,html,css,md,svg ./build.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest --silent --config .jest/jest.config.cjs",
"test:watch": "npm test -- --watch",
"test:cover": "npm test -- --coverage"
},
"author": "Buz Carter",
"contributors": [
"B.Carter <[email protected]>"
],
"license": "MIT",
"dependencies": {
"pretty": "^2.0.0",
"sharp": "^0.32.6",
"showdown": "^2.1.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.7.0",
"jest-localstorage-mock": "^2.4.26",
"nodemon": "^3.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buzcarter/recipes-nodejs.git"
},
"keywords": [
"baking",
"conversion",
"cooking",
"index",
"ingredients",
"instructions",
"kitchen",
"markdown",
"node",
"publish",
"recipe",
"recipes",
"static"
],
"bugs": {
"url": "https://github.com/buzcarter/recipes-nodejs/issues"
},
"homepage": "https://github.com/buzcarter/recipes-nodejs#readme"
}