Changeset 59329aa for trip-planner-front/node_modules/form-data
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/form-data/package.json
rceaed42 r59329aa 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": "2.3.3", 6 "repository": { 7 "type": "git", 8 "url": "git://github.com/form-data/form-data.git" 2 "_args": [ 3 [ 4 "form-data@2.3.3", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "form-data@2.3.3", 10 "_id": "form-data@2.3.3", 11 "_inBundle": false, 12 "_integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", 13 "_location": "/form-data", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "form-data@2.3.3", 19 "name": "form-data", 20 "escapedName": "form-data", 21 "rawSpec": "2.3.3", 22 "saveSpec": null, 23 "fetchSpec": "2.3.3" 9 24 }, 10 "main": "./lib/form_data", 25 "_requiredBy": [ 26 "/request" 27 ], 28 "_resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", 29 "_spec": "2.3.3", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Felix Geisendörfer", 33 "email": "felix@debuggable.com", 34 "url": "http://debuggable.com/" 35 }, 11 36 "browser": "./lib/browser", 12 "scripts": { 13 "pretest": "rimraf coverage test/tmp", 14 "test": "istanbul cover test/run.js", 15 "posttest": "istanbul report lcov text", 16 "lint": "eslint lib/*.js test/*.js test/integration/*.js", 17 "report": "istanbul report lcov text", 18 "ci-lint": "is-node-modern 6 && npm run lint || is-node-not-modern 6", 19 "ci-test": "npm run test && npm run browser && npm run report", 20 "predebug": "rimraf coverage test/tmp", 21 "debug": "verbose=1 ./test/run.js", 22 "browser": "browserify -t browserify-istanbul test/run-browser.js | obake --coverage", 23 "check": "istanbul check-coverage coverage/coverage*.json", 24 "files": "pkgfiles --sort=name", 25 "get-version": "node -e \"console.log(require('./package.json').version)\"", 26 "update-readme": "sed -i.bak 's/\\/master\\.svg/\\/v'$(npm --silent run get-version)'.svg/g' README.md", 27 "restore-readme": "mv README.md.bak README.md", 28 "prepublish": "in-publish && npm run update-readme || not-in-publish", 29 "postpublish": "npm run restore-readme" 30 }, 31 "pre-commit": [ 32 "lint", 33 "ci-test", 34 "check" 35 ], 36 "engines": { 37 "node": ">= 0.12" 37 "bugs": { 38 "url": "https://github.com/form-data/form-data/issues" 38 39 }, 39 40 "dependencies": { … … 42 43 "mime-types": "^2.1.12" 43 44 }, 45 "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", 44 46 "devDependencies": { 45 47 "browserify": "^13.1.1", … … 62 64 "tape": "^4.6.2" 63 65 }, 64 "license": "MIT" 66 "engines": { 67 "node": ">= 0.12" 68 }, 69 "homepage": "https://github.com/form-data/form-data#readme", 70 "license": "MIT", 71 "main": "./lib/form_data", 72 "name": "form-data", 73 "pre-commit": [ 74 "lint", 75 "ci-test", 76 "check" 77 ], 78 "repository": { 79 "type": "git", 80 "url": "git://github.com/form-data/form-data.git" 81 }, 82 "scripts": { 83 "browser": "browserify -t browserify-istanbul test/run-browser.js | obake --coverage", 84 "check": "istanbul check-coverage coverage/coverage*.json", 85 "ci-lint": "is-node-modern 6 && npm run lint || is-node-not-modern 6", 86 "ci-test": "npm run test && npm run browser && npm run report", 87 "debug": "verbose=1 ./test/run.js", 88 "files": "pkgfiles --sort=name", 89 "get-version": "node -e \"console.log(require('./package.json').version)\"", 90 "lint": "eslint lib/*.js test/*.js test/integration/*.js", 91 "postpublish": "npm run restore-readme", 92 "posttest": "istanbul report lcov text", 93 "predebug": "rimraf coverage test/tmp", 94 "prepublish": "in-publish && npm run update-readme || not-in-publish", 95 "pretest": "rimraf coverage test/tmp", 96 "report": "istanbul report lcov text", 97 "restore-readme": "mv README.md.bak README.md", 98 "test": "istanbul cover test/run.js", 99 "update-readme": "sed -i.bak 's/\\/master\\.svg/\\/v'$(npm --silent run get-version)'.svg/g' README.md" 100 }, 101 "version": "2.3.3" 65 102 }
Note:
See TracChangeset
for help on using the changeset viewer.