move to node version 12

This commit is contained in:
bitkarrot
2022-03-20 23:59:34 -07:00
parent eddc7d6df1
commit a725bca03a
82 changed files with 4743 additions and 2304 deletions

114
node_modules/axios/package.json generated vendored
View File

@@ -1,37 +1,51 @@
{
"name": "axios",
"version": "0.26.1",
"description": "Promise based HTTP client for the browser and node.js",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "grunt test && dtslint",
"start": "node ./sandbox/server.js",
"build": "NODE_ENV=production grunt build",
"preversion": "grunt version && npm test",
"version": "npm run build && git add -A dist && git add CHANGELOG.md bower.json package.json",
"postversion": "git push && git push --tags",
"examples": "node ./examples/server.js",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"fix": "eslint --fix lib/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/axios/axios.git"
},
"keywords": [
"xhr",
"http",
"ajax",
"promise",
"node"
"_args": [
[
"axios@0.26.1",
"/Users/bitcarrot/github/satshkd-vercel"
]
],
"author": "Matt Zabriskie",
"license": "MIT",
"_from": "axios@0.26.1",
"_id": "axios@0.26.1",
"_inBundle": false,
"_integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==",
"_location": "/axios",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "axios@0.26.1",
"name": "axios",
"escapedName": "axios",
"rawSpec": "0.26.1",
"saveSpec": null,
"fetchSpec": "0.26.1"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz",
"_spec": "0.26.1",
"_where": "/Users/bitcarrot/github/satshkd-vercel",
"author": {
"name": "Matt Zabriskie"
},
"browser": {
"./lib/adapters/http.js": "./lib/adapters/xhr.js"
},
"bugs": {
"url": "https://github.com/axios/axios/issues"
},
"homepage": "https://axios-http.com",
"bundlesize": [
{
"path": "./dist/axios.min.js",
"threshold": "5kB"
}
],
"dependencies": {
"follow-redirects": "^1.14.8"
},
"description": "Promise based HTTP client for the browser and node.js",
"devDependencies": {
"abortcontroller-polyfill": "^1.5.0",
"coveralls": "^3.0.0",
@@ -68,19 +82,35 @@
"webpack": "^4.44.2",
"webpack-dev-server": "^3.11.0"
},
"browser": {
"./lib/adapters/http.js": "./lib/adapters/xhr.js"
},
"homepage": "https://axios-http.com",
"jsdelivr": "dist/axios.min.js",
"unpkg": "dist/axios.min.js",
"typings": "./index.d.ts",
"dependencies": {
"follow-redirects": "^1.14.8"
"keywords": [
"xhr",
"http",
"ajax",
"promise",
"node"
],
"license": "MIT",
"main": "index.js",
"name": "axios",
"repository": {
"type": "git",
"url": "git+https://github.com/axios/axios.git"
},
"bundlesize": [
{
"path": "./dist/axios.min.js",
"threshold": "5kB"
}
]
"scripts": {
"build": "NODE_ENV=production grunt build",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"examples": "node ./examples/server.js",
"fix": "eslint --fix lib/**/*.js",
"postversion": "git push && git push --tags",
"preversion": "grunt version && npm test",
"start": "node ./sandbox/server.js",
"test": "grunt test && dtslint",
"version": "npm run build && git add -A dist && git add CHANGELOG.md bower.json package.json"
},
"types": "index.d.ts",
"typings": "./index.d.ts",
"unpkg": "dist/axios.min.js",
"version": "0.26.1"
}