diff options
author | Minteck <contact@minteck.org> | 2022-08-21 17:31:56 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-08-21 17:31:56 +0200 |
commit | a2df9a69dcc14cb70118cda2ded499055e7ee358 (patch) | |
tree | 6dd283e4e9452d38bce81ddaaae49b5335755842 /together/node_modules/formidable/package.json | |
parent | 84dd0735820b16b60f600284d35183d76547a71f (diff) | |
download | pluralconnect-a2df9a69dcc14cb70118cda2ded499055e7ee358.tar.gz pluralconnect-a2df9a69dcc14cb70118cda2ded499055e7ee358.tar.bz2 pluralconnect-a2df9a69dcc14cb70118cda2ded499055e7ee358.zip |
m. update
Diffstat (limited to 'together/node_modules/formidable/package.json')
-rw-r--r-- | together/node_modules/formidable/package.json | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/together/node_modules/formidable/package.json b/together/node_modules/formidable/package.json new file mode 100644 index 0000000..79ed15e --- /dev/null +++ b/together/node_modules/formidable/package.json @@ -0,0 +1,98 @@ +{ + "name": "formidable", + "version": "2.0.1", + "license": "MIT", + "description": "A node.js module for parsing form data, especially file uploads.", + "homepage": "https://github.com/node-formidable/formidable", + "funding": "https://ko-fi.com/tunnckoCore/commissions", + "repository": "node-formidable/formidable", + "main": "./src/index.js", + "files": [ + "src" + ], + "publishConfig": { + "access": "public", + "tag": "v2" + }, + "scripts": { + "bench": "node benchmark", + "fmt": "yarn run fmt:prepare '**/*'", + "fmt:prepare": "prettier --write", + "lint": "yarn run lint:prepare .", + "lint:prepare": "eslint --cache --fix --quiet --format codeframe", + "reinstall": "del-cli ./node_modules ./yarn.lock", + "postreinstall": "yarn setup", + "setup": "yarn", + "pretest": "del-cli ./test/tmp && make-dir ./test/tmp", + "test": "jest --coverage", + "pretest:ci": "yarn run pretest", + "test:ci": "nyc jest --coverage", + "test:jest": "jest --coverage" + }, + "dependencies": { + "dezalgo": "1.0.3", + "hexoid": "1.0.0", + "once": "1.4.0", + "qs": "6.9.3" + }, + "devDependencies": { + "@commitlint/cli": "8.3.5", + "@commitlint/config-conventional": "8.3.4", + "@tunnckocore/prettier-config": "1.3.8", + "del-cli": "3.0.0", + "eslint": "6.8.0", + "eslint-config-airbnb-base": "14.1.0", + "eslint-config-prettier": "6.11.0", + "eslint-plugin-import": "2.20.2", + "eslint-plugin-prettier": "3.1.3", + "express": "4.17.1", + "husky": "4.2.5", + "jest": "25.4.0", + "koa": "2.11.0", + "lint-staged": "10.2.7", + "make-dir-cli": "2.0.0", + "nyc": "15.0.1", + "prettier": "2.0.5", + "prettier-plugin-pkgjson": "0.2.8", + "request": "2.88.2", + "supertest": "4.0.2" + }, + "jest": { + "verbose": true + }, + "husky": { + "hooks": { + "pre-commit": "git status --porcelain && yarn lint-staged", + "commit-msg": "yarn commitlint -E HUSKY_GIT_PARAMS" + } + }, + "commitlint": { + "extends": [ + "@commitlint/config-conventional" + ] + }, + "lint-staged": { + "!*.{js,jsx,ts,tsx}": [ + "yarn run fmt:prepare" + ], + "*.{js,jsx,ts,tsx}": [ + "yarn run lint" + ] + }, + "renovate": { + "extends": [ + "@tunnckocore", + ":pinAllExceptPeerDependencies" + ] + }, + "keywords": [ + "multipart", + "form", + "data", + "querystring", + "www", + "json", + "ulpoad", + "file" + ] +} |