forked from cojs/busboy
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "await-busboy",
"description": "An awaitable busboy multipart parser",
"version": "1.0.3",
"author": {
"name": "Aaron Heckmann",
"email": "aaron.heckmann@gmail.com",
"url": "https://github.com/aheckmann",
"twitter": "https://twitter.com/aaronheckmann"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aheckmann/await-busboy.git"
},
"bugs": {
"url": "https://github.com/aheckmann/await-busboy/issues"
},
"engines": {
"node": ">= 7.6.0"
},
"dependencies": {
"black-hole-stream": "0.0.1",
"busboy": "0.3.0"
},
"devDependencies": {
"co": "4.6.x",
"formstream": "^1.1.0",
"istanbul": "0.4.x",
"mocha": "^6.0.2",
"standard": "^12.0.1"
},
"scripts": {
"test": "npm run test-cov && npm run lint",
"lint": "NODE_ENV=test node_modules/standard/bin/cmd.js",
"lint-fix": "NODE_ENV=test node_modules/standard/bin/cmd.js --fix",
"test-cov": "NODE_ENV=test istanbul cover _mocha -- --reporter spec --bail test/index.js",
"open-cov": "open coverage/lcov-report/index.html",
"test-only": "NODE_ENV=test mocha --reporter spec --bail test/index.js"
},
"files": [
"index.js",
"result.js",
"LICENSE.md"
]
}