-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.39 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.39 KB
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
{
"name": "@medley/multipart",
"version": "0.3.0",
"description": "Medley plugin for parsing 'multipart/form-data' bodies",
"author": "Nathan Woltman <nwoltman@outlook.com>",
"license": "MIT",
"main": "multipart.js",
"files": [
"multipart.js",
"lib"
],
"engines": {
"node": ">=8"
},
"repository": "github:medleyjs/multipart",
"homepage": "https://github.com/medleyjs/multipart",
"bugs": "https://github.com/medleyjs/multipart/issues",
"keywords": [
"medley",
"plugin",
"multipart",
"form-data",
"form",
"post"
],
"eslintIgnore": [
"coverage"
],
"nyc": {
"reporter": [
"html",
"text-summary"
],
"check-coverage": true,
"branches": 100,
"lines": 100,
"statements": 100
},
"peerDependencies": {
"@medley/medley": ">=0.13.0"
},
"dependencies": {
"append-field": "^1.0.0",
"busboy": "~0.3.1",
"on-finished": "^2.3.0"
},
"devDependencies": {
"@medley/medley": "~0.13.0",
"@nwoltman/eslint-config": "~0.6.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"form-data": "^3.0.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"proxyquire": "^2.1.3",
"testdata-w3c-json-form": "~1.0.0"
},
"scripts": {
"lint": "eslint .",
"test-only": "nyc mocha",
"test": "eslint . && nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
}
}