forked from form-data/form-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"author": "Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)",
"name": "form-data",
"description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.",
"version": "1.0.0-rc3",
"repository": {
"type": "git",
"url": "git://github.com/form-data/form-data.git"
},
"main": "./lib/form_data",
"browser": "./lib/browser",
"scripts": {
"pretest": "rimraf coverage test/tmp",
"test": "istanbul cover --report none test/run.js",
"posttest": "istanbul report",
"lint": "eslint lib/*.js test/*.js test/**/*.js",
"predebug": "rimraf coverage test/tmp",
"debug": "verbose=1 ./test/run.js",
"check": "istanbul check-coverage coverage/coverage*.json",
"coverage": "codacy-coverage < ./coverage/lcov.info; true"
},
"pre-commit": [
"lint",
"test",
"check"
],
"engines": {
"node": ">= 0.10"
},
"dependencies": {
"async": "^1.4.0",
"combined-stream": "^1.0.5",
"mime-types": "^2.1.3"
},
"license": "MIT",
"devDependencies": {
"codacy-coverage": "^1.1.3",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"fake": "^0.2.2",
"far": "^0.0.7",
"formidable": "^1.0.17",
"istanbul": "^0.4.1",
"pre-commit": "^1.0.10",
"request": "^2.60.0",
"rimraf": "^2.5.0",
"win-spawn": "^2.0.0"
}
}