-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "multi-part",
"author": "Alexey Bystrov <strikeentco@gmail.com>",
"version": "4.0.0",
"engines": {
"node": ">=10"
},
"description": "Simple multipart/form-data implementation with automatic data type detection. Supports: Strings, Numbers, Arrays, Streams, Buffers and Vinyl.",
"keywords": [
"multi-part",
"form",
"data",
"buffer",
"stream",
"vinyl",
"form-data",
"multipart"
],
"main": "./main.js",
"files": [
"main.js"
],
"scripts": {
"test": "mocha test",
"lint": "eslint main.js",
"check": "npm run lint && npm run test",
"cover": "nyc ./node_modules/mocha/bin/_mocha && nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strikeentco/multi-part.git"
},
"bugs": {
"url": "https://github.com/strikeentco/multi-part/issues"
},
"dependencies": {
"mime-kind": "^4.0.0",
"multi-part-lite": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"express": "^4.18.1",
"got": "^9.6.0",
"mocha": "^6.2.3",
"multer": "^1.4.4",
"nyc": "^14.1.1",
"should": "^13.2.3",
"vinyl": "^2.2.1"
},
"license": "MIT"
}