forked from alexyak/stocks
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 896 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
35
36
37
38
39
40
{
"name": "mmm-stocks",
"version": "1.0.0",
"description": "stock ticker module to be used by magic mirror",
"main": "stocks.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint **/*.js --ignore-pattern node_modules/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elaniobro/mmm-stocks.git"
},
"keywords": [
"stock",
"stocks",
"magic",
"mirror",
"module"
],
"author": {
"name": "Elan Trybuch",
"email": "elan@trybuch.com",
"url": "https://elan.trybuch.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Elaniobro/mmm-stocks/issues"
},
"homepage": "https://github.com/Elaniobro/mmm-stocks#readme",
"devDependencies": {
"eslint": "^6.0.1",
"husky": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}