-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.67 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
{
"name": "depart",
"description": "TypeScript/async compatible standalone or express middleware for handling `multipart/form-data`.",
"version": "0.3.0",
"contributors": [
"Marqit8 <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marqit8/depart"
},
"keywords": [
"form",
"post",
"depart",
"ts",
"parse",
"multipart",
"form-data",
"formdata",
"express",
"middleware"
],
"dependencies": {
"append-field": "^1.0.0",
"async-coalesce": "^1.0.3",
"busboy": "^0.3.1",
"concat-stream": "^2.0.0",
"mkdirp": "^0.5.1",
"object-assign": "^4.1.1",
"on-finished": "^2.3.0",
"readable-stream-clone": "0.0.4",
"type-is": "^1.6.18",
"xtend": "^4.0.2"
},
"devDependencies": {
"@types/assert": "^1.4.2",
"@types/busboy": "^0.2.3",
"@types/express": "^4.17.0",
"@types/form-data": "^2.2.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.2",
"express": "^4.17.1",
"form-data": "^2.5.0",
"fs-temp": "^1.1.2",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"rimraf": "^2.4.1",
"standard": "^12.0.1",
"testdata-w3c-json-form": "^1.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"engines": {
"node": ">= 0.10.0"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"bump": "npm --no-git-tag-version version patch",
"clean": "rimraf dist",
"build": "tsc",
"npmpublish": "npm publish --access public",
"deploy": "run-s clean build bump npmpublish clean"
},
"files": [
"dist/",
"Readme.md",
"LICENSE",
".travis.yml"
]
}