-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "ghost-storage-github",
"version": "2.0.1",
"description": "GitHub storage adapter for Ghost",
"homepage": "https://github.com/ifvictr/ghost-storage-github#readme",
"bugs": {
"url": "https://github.com/ifvictr/ghost-storage-github/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ifvictr/ghost-storage-github.git"
},
"license": "MIT",
"author": {
"name": "Victor Truong",
"email": "[email protected]",
"url": "https://victortruong.com"
},
"main": "./build/index.js",
"files": [
"build/"
],
"scripts": {
"build": "yarn clean && babel ./src --out-dir ./build",
"clean": "rm -rf ./build && mkdir ./build",
"prepublish": "yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@octokit/plugin-retry": "^3.0.7",
"@octokit/plugin-throttling": "^3.4.1",
"@octokit/rest": "^18.5.2",
"bluebird": "^3.7.2",
"ghost-storage-base": "^0.0.5",
"is-url": "^1.2.4"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"babel-plugin-add-module-exports": "^1.0.4"
},
"engines": {
"node": ">=7.0.0"
}
}