-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
34 lines (34 loc) · 969 Bytes
/
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
{
"name": "louisvilletech.org",
"version": "0.0.0",
"description": "Louisville Tech Calendar",
"main": "index.js",
"scripts": {
"lint": "eslint download.js index.js",
"download": "node download.js",
"download-jobs": "node download-jobs.js",
"process": "node ical-to-json.js",
"unfold": "unfold site.json",
"build": "npm run download && npm run download-jobs && npm run process && npm run unfold"
},
"author": "Eric Lathrop <[email protected]> (http://ericlathrop.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/louisvilletech.org/louisvilletech.org.git"
},
"dependencies": {
"async": "^2.6.3",
"bourbon": "^4.2.7",
"bourbon-neat": "^1.9.1",
"ical.js": "^1.4.0",
"moment-timezone": "^0.5.27",
"node-fetch": "^2.6.1",
"normalize.scss": "^0.1.0",
"ramda": "^0.15.1",
"unfold": "^0.4.2"
},
"devDependencies": {
"eslint": "^4.8.0"
}
}