-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"name": "matts-homebrew-recipes",
"version": "0.4.0",
"description": "Parses through html files generated by Beer Alchemy 1",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=14"
},
"scripts": {
"make": "node -r dotenv/config index.js",
"server": "nodemon -e js,pug,css -r dotenv/config ./util/server.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stoptime/brew.git"
},
"bugs": {
"url": "https://github.com/stoptime/brew/issues"
},
"homepage": "https://github.com/stoptime/brew#readme",
"author": "Matt Mayes",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pug": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/pug": "^2.0.4",
"fs-extra": "^9.1.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"sinon": "^9.2.4"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"jest": {
"clearMocks": true,
"coverageDirectory": "coverage",
"coverageProvider": "v8",
"setupFiles": [
"dotenv/config"
],
"transform": {},
"testEnvironment": "jest-environment-node"
}
}