-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
135 lines (135 loc) · 2.69 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@koa/multer",
"description": "Route middleware for Koa that handles `multipart/form-data` using multer",
"version": "3.0.2",
"author": {
"name": "Fangdun Cai",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/koajs/multer/issues",
"email": "[email protected]"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"contributors": [
{
"name": "Nick Baugh",
"email": "[email protected]",
"url": "http://niftylettuce.com/"
},
{
"name": "Imed Jaberi",
"email": "[email protected]",
"url": "https://www.3imed-jaberi.com/"
}
],
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@koa/router": "^12",
"concat-stream": "^2",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"form-data": "^4",
"fs-temp": "^2",
"husky": "^8.0.2",
"koa": "^2",
"lint-staged": "^13.0.3",
"mocha": "3.x",
"multer": "1",
"nyc": "^15.1.0",
"on-finished": "^2",
"remark-cli": "^11.0.0",
"remark-preset-github": "^4.0.4",
"rimraf": "^3",
"testdata-w3c-json-form": "^1",
"xo": "^0.54.2"
},
"engines": {
"node": ">= 14"
},
"files": [
"LICENSE",
"README.md",
"index.js"
],
"homepage": "https://github.com/koajs/multer",
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"form",
"form-data",
"formdata",
"koa",
"middleware",
"multipart",
"post"
],
"license": "MIT",
"lint-staged": {
"linters": {
"*.js": [
"xo --fix",
"git add"
],
"*.md": [
"remark . -qfo",
"git add"
],
"package.json": [
"fixpack",
"git add"
]
}
},
"main": "index.js",
"peerDependencies": {
"multer": "*"
},
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
},
"publishConfig": {
"access": "public"
},
"remarkConfig": {
"plugins": [
"preset-github"
]
},
"repository": {
"type": "git",
"url": "https://github.com/koajs/multer"
},
"scripts": {
"lint": "xo && remark . -qfo",
"test": "npm run lint && mocha",
"test-ci": "nyc npm run test --reporter=lcov"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
],
"rules": {
"node/no-deprecated-api": "off",
"no-unused-vars": "off",
"no-prototype-builtins": "off",
"prefer-rest-params": "off"
}
},
"dependencies": {
"fix-esm": "1.0.1"
}
}