-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.05 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "firebase-project-manager",
"license": "MIT",
"version": "0.0.5",
"author": "rioam2",
"homepage": "https://www.npmjs.com/package/firebase-project-manager",
"description": "Create and manage your Firebase projects from the command line or with code",
"main": "./dist/src/index.js",
"bin": {
"firebase-project-manager": "./dist/src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rioam2/firebase-project-manager.git"
},
"bugs": {
"url": "https://github.com/rioam2/firebase-project-manager/issues"
},
"keywords": [
"firebase",
"firebase-tools",
"cli",
"creation",
"apis",
"automation",
"automate",
"command-line-tool"
],
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc",
"postbuild": "chmod +x ./dist/src/cli.js",
"firebase-project-manager": "./node_modules/.bin/ts-node ./src/cli.ts",
"test": "nyc mocha",
"watch": "mocha --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublishOnly": "yarn build"
},
"files": [
"dist/**"
],
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn embedme README.md"
}
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text"
],
"sourceMap": true,
"instrument": true
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/cli-spinner": "^0.2.0",
"@types/configstore": "^4.0.0",
"@types/figlet": "^1.2.0",
"@types/inquirer": "^6.5.0",
"@types/mocha": "^7.0.1",
"@types/node": "^13.1.5",
"@types/open": "^6.2.1",
"@types/sinon": "^7.0.13",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"embedme": "^1.17.1",
"husky": "^4.0.1",
"mocha": "^6.0.2",
"nyc": "^15.0.0",
"sinon": "^9.0.1",
"source-map-support": "^0.5.13",
"ts-node": "^8.3.0",
"tslint": "^6.0.0",
"typescript": "^3.6.2"
},
"dependencies": {
"chalk": "^2.4.2",
"cli-spinner": "^0.2.10",
"commander": "^5.0.0",
"configstore": "^5.0.0",
"figlet": "^1.2.4",
"googleapis": "^43.0.0",
"inquirer": "^7.0.0",
"open": "^7.0.0"
}
}