Changeset 79a0317 for imaps-frontend/node_modules/form-data
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/form-data/package.json
r0c6b92a r79a0317 1 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.1", 6 "repository": { 7 "type": "git", 8 "url": "git://github.com/form-data/form-data.git" 2 "_from": "form-data@4.0.1", 3 "_id": "form-data@4.0.1", 4 "_inBundle": false, 5 "_integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", 6 "_location": "/form-data", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "version", 10 "registry": true, 11 "raw": "form-data@4.0.1", 12 "name": "form-data", 13 "escapedName": "form-data", 14 "rawSpec": "4.0.1", 15 "saveSpec": null, 16 "fetchSpec": "4.0.1" 9 17 }, 10 "main": "./lib/form_data", 18 "_requiredBy": [ 19 "/axios" 20 ], 21 "_resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", 22 "_shasum": "ba1076daaaa5bfd7e99c1a6cb02aa0a5cff90d48", 23 "_spec": "form-data@4.0.1", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/axios", 25 "author": { 26 "name": "Felix Geisendörfer", 27 "email": "felix@debuggable.com", 28 "url": "http://debuggable.com/" 29 }, 11 30 "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" 31 "bugs": { 32 "url": "https://github.com/form-data/form-data/issues" 34 33 }, 35 "pre-commit": [ 36 "lint", 37 "ci-test", 38 "check" 39 ], 40 "engines": { 41 "node": ">= 6" 42 }, 34 "bundleDependencies": false, 43 35 "dependencies": { 44 36 "asynckit": "^0.4.0", … … 46 38 "mime-types": "^2.1.12" 47 39 }, 40 "deprecated": false, 41 "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", 48 42 "devDependencies": { 49 43 "@types/node": "^12.0.10", … … 60 54 "istanbul": "^0.4.5", 61 55 "obake": "^0.1.2", 62 "puppeteer": "^1.19.0",63 56 "pkgfiles": "^2.3.0", 64 57 "pre-commit": "^1.1.3", 58 "puppeteer": "^1.19.0", 65 59 "request": "^2.88.0", 66 60 "rimraf": "^2.7.1", … … 68 62 "typescript": "^3.5.2" 69 63 }, 70 "license": "MIT" 64 "engines": { 65 "node": ">= 6" 66 }, 67 "homepage": "https://github.com/form-data/form-data#readme", 68 "license": "MIT", 69 "main": "./lib/form_data", 70 "name": "form-data", 71 "pre-commit": [ 72 "lint", 73 "ci-test", 74 "check" 75 ], 76 "repository": { 77 "type": "git", 78 "url": "git://github.com/form-data/form-data.git" 79 }, 80 "scripts": { 81 "browser": "browserify -t browserify-istanbul test/run-browser.js | obake --coverage", 82 "check": "istanbul check-coverage coverage/coverage*.json", 83 "ci-lint": "is-node-modern 8 && npm run lint || is-node-not-modern 8", 84 "ci-test": "npm run tests-only && npm run browser && npm run report", 85 "debug": "verbose=1 ./test/run.js", 86 "files": "pkgfiles --sort=name", 87 "get-version": "node -e \"console.log(require('./package.json').version)\"", 88 "lint": "eslint --ext=js,mjs .", 89 "postpublish": "npm run restore-readme", 90 "posttest": "npx npm@'>=10.2' audit --production", 91 "posttests-only": "istanbul report lcov text", 92 "predebug": "rimraf coverage test/tmp", 93 "prepublish": "in-publish && npm run update-readme || not-in-publish", 94 "pretest": "npm run lint", 95 "pretests-only": "rimraf coverage test/tmp", 96 "report": "istanbul report lcov text", 97 "restore-readme": "mv README.md.bak README.md", 98 "test": "npm run tests-only", 99 "tests-only": "istanbul cover test/run.js", 100 "update-readme": "sed -i.bak 's/\\/master\\.svg/\\/v'$(npm --silent run get-version)'.svg/g' README.md" 101 }, 102 "typings": "./index.d.ts", 103 "version": "4.0.1" 71 104 }
Note:
See TracChangeset
for help on using the changeset viewer.