forked from jeffminsungkim/nestjs-multer-extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.16 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
{
"name": "nestjs-multer-extended",
"version": "1.4.1",
"description": "Extended MulterModule for NestJS",
"author": "Minsung Kim <[email protected]>",
"license": "MIT",
"url": "https://github.com/jeffminsungkim/nestjs-multer-extended#readme",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"commit": "git-cz",
"coverage": "jest -c ./tests/jest-e2e.json --runInBand --coverage --coverageReporters=text-lcov | coveralls",
"test": "jest --runInBand --coverage",
"test:integration": "jest --config ./tests/jest-e2e.json --runInBand --coverage",
"format": "prettier --write \"lib/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint:fix": "tslint --fix -c tslint.json 'lib/**/*{.ts,.tsx}'",
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next"
},
"repository": {
"type": "git",
"url": "https://github.com/jeffminsungkim/nestjs-multer-extended"
},
"keywords": [
"nestjs",
"nest",
"multer",
"multer-sharp",
"sharp",
"file upload",
"file interceptor",
"extend",
"extended",
"aws",
"s3"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@nestjs/common": "^6.11.5 || ^7.0.0",
"@nestjs/platform-express": "^6.11.5 || ^7.0.0"
},
"dependencies": {
"aws-sdk": "^2.610.0",
"mime-types": "^2.1.27",
"sharp": "^0.26.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@nestjs/common": "7.6.1",
"@nestjs/core": "7.6.1",
"@nestjs/platform-express": "7.6.1",
"@nestjs/testing": "7.6.1",
"@types/express": "4.17.9",
"@types/jest": "26.0.19",
"@types/jest-when": "2.7.2",
"@types/mime-types": "2.1.0",
"@types/multer": "1.4.5",
"@types/node": "13.13.5",
"@types/sharp": "0.26.1",
"@types/sinon": "9.0.9",
"@types/supertest": "2.0.10",
"commitizen": "4.2.2",
"conventional-changelog-cli": "2.1.1",
"coveralls": "3.1.0",
"cz-conventional-changelog": "3.3.0",
"husky": "4.3.5",
"jest": "26.6.3",
"jest-extended": "0.11.5",
"jest-when": "3.0.1",
"lint-staged": "10.5.3",
"nestjs-config": "1.4.7",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"reflect-metadata": "0.1.13",
"rxjs": "6.6.3",
"sinon": "9.2.1",
"supertest": "6.0.1",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"tsc-watch": "4.2.9",
"tsconfig-paths": "3.9.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-message": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"pretty-quick",
"tslint -p tsconfig.json"
],
"*.{js,json}": "pretty-quick"
}
}