-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "@danmasta/ghost-gcs-adapter",
"private": true,
"version": "1.0.2",
"author": "Daniel Smith <[email protected]>",
"description": "Ghost GCS Storage Adapter",
"license": "MIT",
"keywords": [
"ghost",
"blog",
"content",
"cms",
"gcs",
"adapter",
"storage"
],
"main": "index.js",
"files": [
"index.js",
"lib/**/*"
],
"scripts": {
"test": "./node_modules/.bin/mocha tests",
"coverage": "./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/mocha tests"
},
"repository": {
"type": "git",
"url": "https://github.com/danmasta/ghost-gcs-adapter.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"@google-cloud/storage": "^6.9.2",
"ghost-storage-base": "^1.0.0",
"interpolate": "danmasta/interpolate#v0.0.15",
"lodash": "^4.17.21"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}