forked from adonisjs/attachment-lite
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
116 lines (116 loc) · 3.17 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "adonis-responsive-attachment",
"version": "1.8.2",
"description": "Generate and persist optimised and responsive breakpoint images on the fly in your AdonisJS application.",
"main": "build/providers/ResponsiveAttachmentProvider.js",
"files": [
"build/adonis-typings",
"build/providers",
"build/src"
],
"typings": "./build/adonis-typings/index.d.ts",
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test": "nyc node japaFile.js",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts --fix",
"format": "prettier --write .",
"commit": "git-cz",
"release": "np",
"version": "npm run build",
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json ndianabasi/adonis-responsive-attachment"
},
"keywords": [
"adonisjs",
"lucid",
"attachment",
"adonis-responsive-attachment",
"image-attachment",
"image-manipulation",
"responsive-images",
"responsive-image",
"resize-images",
"optimize-images",
"image",
"sharp"
],
"author": "Ndianabasi Udonkang",
"license": "MIT",
"devDependencies": {
"@adonisjs/core": "^5.9.0",
"@adonisjs/lucid": "^18.3.0",
"@adonisjs/mrm-preset": "^5.0.3",
"@adonisjs/require-ts": "^2.0.13",
"@poppinss/dev-utils": "^2.0.3",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.10",
"@types/sharp": "^0.31.0",
"@types/supertest": "^2.0.12",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.0.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-prettier": "^5.2.1",
"github-label-sync": "^2.2.0",
"husky": "^8.0.2",
"japa": "^4.0.0",
"mrm": "^4.1.13",
"mysql": "^2.18.1",
"np": "^7.6.2",
"nyc": "^15.1.0",
"prettier": "^3.3.3",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.2",
"supertest": "^6.3.1",
"typescript": "^4.9.3"
},
"peerDependencies": {
"@adonisjs/core": "^5.9.0",
"@adonisjs/lucid": "^18.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"yolo": true,
"contents": ".",
"anyBranch": false,
"branch": "develop",
"releaseDraft": true,
"message": "chore: bump version to %s 🚀"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndianabasi/adonis-responsive-attachment.git"
},
"bugs": {
"url": "https://github.com/ndianabasi/adonis-responsive-attachment/issues"
},
"homepage": "https://github.com/ndianabasi/adonis-responsive-attachment#readme",
"dependencies": {
"@poppinss/utils": "^5.0.0",
"blurhash": "^2.0.5",
"detect-file-type": "^0.2.8",
"lodash": "^4.17.21",
"sharp": "^0.33.5"
},
"adonisjs": {
"types": "adonis-responsive-attachment",
"providers": [
"adonis-responsive-attachment"
]
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"packageManager": "yarn@1.22.21"
}