-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "awesome-new-gunn-schedule-package",
"version": "1.1.0",
"description": "Uses the Google Calendar API to obtain the up-to-date alternate schedules for Gunn High School according to the events on their website.",
"files": [
"src",
"dist"
],
"main": "src/index.js",
"scripts": {
"test": "npm run lint && mocha --colors --recursive",
"lint": "standard \"src/**/*.js\" \"test/**/*.js\" --verbose | snazzy",
"build": "webpack --colors",
"prepublishOnly": "npm test && NODE_ENV=production npm run build"
},
"keywords": [
"schedule",
"gunn",
"gunn-schedule"
],
"author": "Ovinus Real",
"license": "MIT",
"dependencies": {
"node-fetch": "^2.6.0"
},
"devDependencies": {
"mocha": "^7.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Orbiit/awesome-new-gunn-schedule-package.git"
},
"bugs": {
"url": "https://github.com/Orbiit/awesome-new-gunn-schedule-package/issues"
},
"homepage": "https://github.com/Orbiit/awesome-new-gunn-schedule-package#readme"
}