UNPKG

1.26 kBJSONView Raw
1{
2 "name": "await-busboy",
3 "description": "An awaitable busboy multipart parser",
4 "version": "1.0.1",
5 "author": {
6 "name": "Aaron Heckmann",
7 "email": "aaron.heckmann@gmail.com",
8 "url": "https://github.com/aheckmann",
9 "twitter": "https://twitter.com/aaronheckmann"
10 },
11 "license": "MIT",
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/aheckmann/await-busboy.git"
15 },
16 "bugs": {
17 "url": "https://github.com/aheckmann/await-busboy/issues"
18 },
19 "engines": {
20 "node": ">= 7.6.0"
21 },
22 "dependencies": {
23 "black-hole-stream": "0.0.1",
24 "busboy": "0.2.13"
25 },
26 "devDependencies": {
27 "co": "4.6.x",
28 "istanbul": "0.4.x",
29 "formstream": "1.0.x",
30 "mocha": "3.1.x",
31 "standard": "^8.5.0"
32 },
33 "scripts": {
34 "test": "npm run test-cov && npm run lint",
35 "lint": "NODE_ENV=test node_modules/standard/bin/cmd.js",
36 "lint-fix": "NODE_ENV=test node_modules/standard/bin/cmd.js --fix",
37 "test-cov": "NODE_ENV=test istanbul cover _mocha -- --reporter spec --bail test/index.js",
38 "open-cov": "open coverage/lcov-report/index.html",
39 "test-only": "NODE_ENV=test mocha --reporter spec --bail test/index.js"
40 },
41 "files": [
42 "index.js",
43 "result.js",
44 "LICENSE.md"
45 ]
46}