-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 919 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 919 Bytes
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
{
"name": "vfire",
"version": "1.1.1",
"description": "Library that is useful for minimizing code redundancies in using Firebase and of course easy to use",
"maintainers": [
{
"name": "Firas Luthfi",
"email": "vrrases@gmail.com"
}
],
"main": "index.js",
"scripts": {
"test": "echo '[PASS] all tests pass'",
"test:mocha": "./node_modules/mocha/bin/mocha --timeout 30000"
},
"keywords": [
"firebase",
"firestore",
"storage",
"firesql"
],
"repository": {
"url": "https://github.com/vrras/vfire.git",
"type": "git"
},
"author": {
"name": "Firas Luthfi",
"email": "vrrases@gmail.com"
},
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"firebase": "^8.2.0",
"firesql": "^2.0.2",
"rxfire": "^4.0.0",
"rxjs": "^6.6.3"
},
"devDependencies": {
"dotenv": "^8.2.0",
"mocha": "^8.2.1"
}
}