-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1009 Bytes
/
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
{
"name": "adonis-drive-minio",
"version": "0.0.8",
"description": "Minio Driver for Adonis Drive",
"scripts": {
"test": "echo \"not tested\"",
"coverage": "nyc npm test",
"lint": "standard",
"lint:fix": "standard --fix"
},
"keywords": [
"adonisjs",
"drive",
"minio"
],
"author": "Ahmad Arif <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ahmadarif/adonis-drive-minio"
},
"dependencies": {
"minio": "^5.0.0",
"node-exceptions": "^3.0.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"
]
}
}