-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.27 KB
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
{
"name": "adonis-drive-google",
"version": "0.0.2",
"description": "Google Cloud Storage Driver for Adonis Drive",
"scripts": {
"test": "echo \"not tested\"",
"coverage": "nyc npm test",
"lint": "standard",
"lint:fix": "standard --fix"
},
"keywords": [
"adonisjs",
"drive",
"google-cloud-storage",
"google",
"cloud",
"storage"
],
"author": "Ahmad Arif <ahmad.arif019@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ahmadarif/adonis-drive-google.git"
},
"dependencies": {
"@google-cloud/storage": "^1.6.0"
},
"devDependencies": {
"@adonisjs/fold": "^4.0.8",
"husky": "^1.0.0-rc.1",
"standard": "^11.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"nyc": {
"exclude": [
"test"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
]
},
"standard": {
"globals": [
"use"
],
"ignore": [
".nyc_output",
"coverage"
]
},
"bugs": {
"url": "https://github.com/ahmadarif/adonis-drive-google/issues"
},
"homepage": "https://github.com/ahmadarif/adonis-drive-google#readme",
"main": "index.js",
"directories": {
"example": "examples"
}
}