CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json75 linesDownload Raw Back to form-data
1{2  "author": "Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)",3  "name": "form-data",4  "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.",5  "version": "4.0.2",6  "repository": {7    "type": "git",8    "url": "git://github.com/form-data/form-data.git"9  },10  "main": "./lib/form_data",11  "browser": "./lib/browser",12  "typings": "./index.d.ts",13  "scripts": {14    "pretest": "npm run lint",15    "pretests-only": "rimraf coverage test/tmp",16    "tests-only": "istanbul cover test/run.js",17    "posttests-only": "istanbul report lcov text",18    "test": "npm run tests-only",19    "posttest": "npx npm@'>=10.2' audit --production",20    "lint": "eslint --ext=js,mjs .",21    "report": "istanbul report lcov text",22    "ci-lint": "is-node-modern 8 && npm run lint || is-node-not-modern 8",23    "ci-test": "npm run tests-only && npm run browser && npm run report",24    "predebug": "rimraf coverage test/tmp",25    "debug": "verbose=1 ./test/run.js",26    "browser": "browserify -t browserify-istanbul test/run-browser.js | obake --coverage",27    "check": "istanbul check-coverage coverage/coverage*.json",28    "files": "pkgfiles --sort=name",29    "get-version": "node -e \"console.log(require('./package.json').version)\"",30    "update-readme": "sed -i.bak 's/\\/master\\.svg/\\/v'$(npm --silent run get-version)'.svg/g' README.md",31    "restore-readme": "mv README.md.bak README.md",32    "prepublish": "in-publish && npm run update-readme || not-in-publish",33    "postpublish": "npm run restore-readme"34  },35  "pre-commit": [36    "lint",37    "ci-test",38    "check"39  ],40  "engines": {41    "node": ">= 6"42  },43  "dependencies": {44    "asynckit": "^0.4.0",45    "combined-stream": "^1.0.8",46    "es-set-tostringtag": "^2.1.0",47    "mime-types": "^2.1.12"48  },49  "devDependencies": {50    "@types/combined-stream": "^1.0.6",51    "@types/mime-types": "^2.1.4",52    "@types/node": "^12.20.55",53    "browserify": "^13.3.0",54    "browserify-istanbul": "^2.0.0",55    "coveralls": "^3.1.1",56    "cross-spawn": "^6.0.6",57    "eslint": "^6.8.0",58    "fake": "^0.2.2",59    "far": "^0.0.7",60    "formidable": "^1.2.6",61    "in-publish": "^2.0.1",62    "is-node-modern": "^1.0.0",63    "istanbul": "^0.4.5",64    "obake": "^0.1.2",65    "pkgfiles": "^2.3.2",66    "pre-commit": "^1.2.2",67    "puppeteer": "^1.20.0",68    "request": "~2.87.0",69    "rimraf": "^2.7.1",70    "tape": "^5.9.0",71    "typescript": "^3.9.10"72  },73  "license": "MIT"74}75