-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "lknwatertemp",
"version": "1.0.0",
"description": "Get Lake Norman Water Temperature",
"scripts": {
"build": "./build.sh",
"build-dev": "./build-dev.sh",
"ejs-build": "ejs ./index.ejs -i $JSON_CONFIG -o index.html",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/franklsm1/LakeNormanWaterTemp.git"
},
"author": "Sean Franklin",
"license": "ISC",
"bugs": {
"url": "https://github.com/franklsm1/LakeNormanWaterTemp/issues"
},
"homepage": "https://github.com/franklsm1/LakeNormanWaterTemp#readme",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"husky": "^4.2.5",
"jest": "^26.1.0"
},
"jest": {
"automock": false,
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
}
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"dependencies": {
"@netlify/functions": "^1.6.0",
"axios": "^1.2.0",
"ejs": "^3.1.9"
},
"engines": {
"node": "^16.14.0",
"npm": "^8.3.1"
}
}