-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
65 lines (65 loc) · 1.6 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@elaniobro/mmm-nyc-transit",
"version": "5.1.0",
"description": "New York City realtime transit module for MagicMirror².",
"main": "MMM-nyc-transit.js",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/elaniobro/MMM-nyc-transit"
},
"scripts": {
"cm": "cz",
"lint:js": "eslint **/*.js --ignore-pattern node_modules/",
"lint:style": "stylelint **/*.css",
"lint": "yarn lint:js && yarn lint:style",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Elaniobro/MMM-nyc-transit"
},
"keywords": [
"MagicMirror",
"NYC",
"transit",
"subway",
"bus",
"public transport"
],
"author": {
"name": "Elan Trybuch",
"email": "[email protected]",
"url": "https://elan.trybuch.com"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"chalk": "^5.2.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"mta-realtime-subway-departures": "^1.2.1",
"prettier": "^2.8.4",
"stylelint": "^15.1.0",
"stylelint-config-standard": "^30.0.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint"
}
},
"dependencies": {
"mta-subway-stations": "1.0.0",
"user": "0.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}