-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
{
"name": "menu-bar-plugins",
"version": "1.0.0",
"description": "MacOS menu bar plugins",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.js'",
"lint:fix": "prettier-eslint '**/*.js' --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bryandms/menu-bar-plugins.git"
},
"keywords": [
"plugin",
"menu bar",
"xbar",
"bitbar"
],
"author": "bryandms",
"license": "MIT",
"bugs": {
"url": "https://github.com/bryandms/menu-bar-plugins/issues"
},
"homepage": "https://github.com/bryandms/menu-bar-plugins#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^4.3.8",
"lint-staged": "^12.1.2",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1"
},
"dependencies": {
"airtable": "^0.11.1",
"dotenv": "^10.0.0"
}
}