-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "@firemanjs/fireman",
"version": "0.0.7",
"description": "Fireman API and CLI",
"main": "dist/index.js",
"bin": {
"fireman": "dist/cli.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"build:parser": "npx pegjs ./parser/parser.pegjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firemanjs/fireman.git"
},
"keywords": [
"fireman",
"firebase",
"firestore",
"firebase",
"database",
"tools"
],
"contributors": [
"Salvatore Giordano <[email protected]>",
"Umberto Pepato <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/firemanjs/fireman/issues"
},
"homepage": "https://github.com/firemanjs/fireman#readme",
"dependencies": {
"@types/inquirer": "^0.0.43",
"chalk": "^2.4.1",
"commander": "^2.19.0",
"firebase-admin": "^6.1.0",
"inquirer": "^6.2.0",
"ora": "^3.0.0",
"table": "^5.1.0"
},
"devDependencies": {
"pegjs": "^0.10.0",
"typescript": "^3.1.3"
}
}