forked from Elaniobro/MMM-nyc-transit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "mmm-nyc-transit",
"version": "4.2.0",
"description": "New York City realtime transit module for magic mirror",
"main": "MMM-nyc-transit.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com/elaniobro/MMM-nyc-transit"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint **/*.js --ignore-pattern node_modules/"
},
"repository": {
"type": "git",
"url": "https://github.com/Elaniobro/MMM-nyc-transit"
},
"keywords": [
"Magic",
"Mirror",
"Magic Mirror",
"MMM",
"NYC",
"transit",
"subway",
"bus"
],
"author": {
"name": "Elan Trybuch",
"email": "elan@trybuch.com",
"url": "https://elan.trybuch.com"
},
"license": "MIT",
"devDependencies": {
"chalk": "^2.4.1",
"eslint": "^6.0.1",
"fs-extra": "^7.0.0",
"husky": "^3.0.0",
"mta-realtime-subway-departures": "^1.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"mta-subway-stations": "0.0.2",
"user": "0.0.0"
}
}