-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "umi-plugin-firebase",
"version": "0.1.1",
"description": "umi plugin for firebase",
"main": "lib/index.js",
"scripts": {
"pub": "npm run build && npm publish",
"test": "echo 'No tests yet.'",
"start": "npm run dev",
"dev": "babel src --watch --out-dir ./lib",
"build": "babel src --out-dir ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lemol/umi-plugin-firebase.git"
},
"keywords": [
"umi",
"umijs",
"firebase",
"plugin",
"umi-plugin"
],
"author": "Leza Lutonda <lemol-c@hotmail.com> (https://github.com/lemol)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lemol/umi-plugin-firebase/issues"
},
"homepage": "https://github.com/lemol/umi-plugin-firebase#readme",
"dependencies": {
"firebase": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "7.7.7",
"@babel/core": "7.7.7",
"@babel/preset-env": "7.7.7",
"babel-preset-latest-node": "4.0.1"
},
"files": [
"lib",
"template",
"src"
]
}