-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "alfred-bitmoji",
"version": "1.0.1",
"description": "Get your Bitmoji comic directly from Alfred",
"main": "index.js",
"repository": "https://github.com/diegolamanno/alfred-bitmoji",
"author": {
"name": "Diego La Manno",
"email": "diegolamanno@gmail.com",
"url": "https://www.diegolamanno.com"
},
"license": "MIT",
"engines": {
"node": ">=8"
},
"files": [
"index.js",
"icon.png",
"info.plist"
],
"dependencies": {
"alfy": "^0.10.0",
"axios": "^0.21.1",
"axios-cache-adapter": "^2.7.3",
"dotenv": "^8.2.0",
"libmoji": "^2.3.0",
"random-words": "^1.1.1",
"urijs": "^1.19.6"
},
"scripts": {
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup",
"prettier:check": "prettier --check \"*.js\"",
"lint": "eslint \"*.js\""
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"prettier": "^2.2.1"
}
}