-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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
{
"name": "ghost-firebase-storage-adapter",
"description": "Read and write images from Firebase storage in the Ghost blogging platform",
"version": "1.0.0-beta.0",
"main": "lib/firebase.js",
"types": "lib/firebase.d.ts",
"keywords": [
"ghost",
"ghost-cms",
"firebase",
"firebase-storage"
],
"author": "Maina Wycliffe <[email protected]>",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint '*/**/*.ts'",
"test": "jest",
"postinstall": "node ./script.js",
"postversion": "git push --follow-tags"
},
"license": "MIT",
"devDependencies": {
"@types/ghost-storage-base": "^0.0.1",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^3.9.0"
},
"dependencies": {
"firebase-admin": "^9.3.0",
"ghost-storage-base": "^0.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/mainawycliffe/ghost-firebase-storage-adapter"
},
"bugs": {
"url": "https://github.com/mainawycliffe/ghost-firebase-storage-adapter/issues"
},
"files": [
"lib/**/*",
"script.js"
]
}