-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "short-fire",
"version": "1.1.2",
"author": "Warat Wongmaneekit <[email protected]>",
"description": "Self hosted shorten URL genarator for Firebase hosting",
"scripts": {
"short-fire-dev": "node main.js",
"lint": "eslint ./libs/*.js main.js --fix",
"clean": "rimraf workspace/config.json workspace/firebase.json workspace/firebaserc workspace/service-account.json",
"deploy": "npm i && npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/thangman22/short-fire.git"
},
"keywords": [
"firebase",
"shorten-url"
],
"dependencies": {
"cli-box": "6.0.10",
"cli-table": "0.3.4",
"clipboardy": "1.2.3",
"commander": "2.20.3",
"conf": "6.2.4",
"figlet": "1.5.0",
"firebase-admin": "8.13.0",
"firebase-tools": "7.16.2",
"format-json": "1.0.3",
"inquirer": "6.5.2",
"json-format": "1.0.1",
"minimist": "1.2.5",
"qrcode-terminal": "0.12.0",
"randomstring": "1.1.5"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"jest": "24.1.0",
"proxyquire": "2.1.0",
"rimraf": "3.0.2"
},
"bin": {
"short-fire": "./main.js"
}
}