-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
82 lines (82 loc) · 1.68 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
{
"name": "firebase-admin",
"version": "1.0.1",
"description": "Firebase Management Cross Platform Application",
"main": "main.js",
"scripts": {
"start": "mode=dev electron .",
"test": "mocha tests",
"package": "node ./build.js",
"build": "build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codefoxes/firebase-admin.git"
},
"keywords": [
"firebase",
"admin",
"management"
],
"author": "codefoxes",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/codefoxes/firebase-admin/issues"
},
"homepage": "https://github.com/codefoxes/firebase-admin#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"electron-bin-path": "^0.1.0",
"electron-packager": "^7.7.0",
"electron-builder": "^7.9.0",
"electron": "^1.3.5",
"mocha": "^3.0.0",
"spectron": "^3.3.0"
},
"dependencies": {
"firebase": "^3.2.0",
"graceful-fs": "^4.1.4",
"jquery": "^3.1.0",
"write-file-atomic": "^1.1.4"
},
"standard": {
"globals": [
"electron",
"firebase",
"angular",
"$",
"jQuery",
"fba",
"writeFile",
"localStorage",
"clipboard",
"ipc",
"describe",
"it"
]
},
"build": {
"appId": "com.firebaseadmin.firebase-admin",
"compression": "maximum",
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"linux": {
"target": "deb",
"maintainer": "[email protected]"
}
}
}