-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
114 lines (114 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
{
"name": "nestjs-multer-extended",
"version": "1.4.2",
"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.802.0",
"mime-types": "^2.1.27",
"sharp": "^0.26.0"
},
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@nestjs/common": "7.6.18",
"@nestjs/core": "7.6.18",
"@nestjs/platform-express": "7.6.18",
"@nestjs/testing": "7.6.18",
"@types/express": "4.17.13",
"@types/jest": "27.0.2",
"@types/jest-when": "2.7.3",
"@types/mime-types": "2.1.1",
"@types/multer": "1.4.7",
"@types/node": "14.17.18",
"@types/sharp": "0.26.1",
"@types/sinon": "10.0.3",
"@types/supertest": "2.0.11",
"commitizen": "4.2.4",
"conventional-changelog-cli": "2.1.1",
"coveralls": "3.1.1",
"cz-conventional-changelog": "3.3.0",
"husky": "7.0.2",
"jest": "27.2.1",
"jest-extended": "0.11.5",
"jest-when": "3.4.0",
"lint-staged": "11.1.2",
"nestjs-config": "1.4.8",
"prettier": "2.3.2",
"pretty-quick": "3.1.1",
"reflect-metadata": "0.1.13",
"rxjs": "6.6.7",
"sinon": "11.1.2",
"supertest": "6.1.6",
"ts-jest": "27.0.5",
"ts-node": "10.2.1",
"tsc-watch": "4.5.0",
"tsconfig-paths": "3.11.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"
}
}