-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "temperature-express",
"version": "1.30.3",
"description": "Hourly forecast graph from data at weather.gov",
"main": "index.js",
"scripts": {
"lint": "eslint html/resources/js/**/*.mjs",
"lint:fix": "npm run lint -- --fix",
"build:html": "cpy --rename=index.html ./html/index.ejs .",
"build:css": "sass ./html/resources/scss/style.scss ./html/resources/css/style.css",
"build": "npm run build:html && npm run build:css"
},
"funding": [
"https://buymeacoffee.com/temp.exp"
],
"repository": {
"type": "git",
"url": "github:netbymatt/temperature-express"
},
"keywords": [
"weather",
"graph",
"chart",
"api.weather.gov",
"temperature-express"
],
"author": "Matt Walsh",
"license": "MIT",
"bugs": {
"url": "https://github.com/netbymatt/temperature-express/issues"
},
"homepage": "https://temperature.express/",
"dependencies": {
"ejs": "^3.1.8",
"express": "^4.18.1"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"sass": "^1.53.0"
}
}