-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (64 loc) · 1.48 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
{
"name": "fireshell",
"version": "1.2.0",
"description": "A shell for firebase realtime database and cloud firestore",
"main": "dist/index.js",
"bin": {
"@aayushk47/fireshell": "./bin/fireshell.js",
"fireshell": "./bin/fireshell.js"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "babel src --out-dir dist --ignore src/*.test.js",
"test": "jest ./src/ --coverage --env=node --forceExit --runInBand",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/AayushK47/fireshell.git"
},
"author": {
"name": "Aayush Kurup",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"babel-preset-latest-node": "^5.5.1",
"codecov": "^3.8.0",
"commander": "^4.1.1",
"dotenv": "^8.2.0",
"firebase": "^7.24.0",
"inquirer": "^7.3.3",
"shortid": "^2.2.15"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.14.0",
"eslint": "^7.11.0",
"jest": "^26.5.3"
},
"keywords": [
"fireshell",
"firebase",
"database",
"firestore",
"firebase-tools",
"firebase-cli"
],
"files": [
"dist",
"bin"
],
"jest": {
"verbose": true,
"transformIgnorePatterns": [
"/node_modules/",
"\\.pnp\\.[^\\/]+$",
"src/query.test.js",
"src/database.test.js",
"src/firestore.test.js",
"src/callbacks.test.js",
"src/firerun.test.js"
]
}
}