File size: 4,947 Bytes
fdcb5fa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
{
"_from": "dropbox",
"_id": "dropbox@10.34.0",
"_inBundle": false,
"_integrity": "sha512-5jb5/XzU0fSnq36/hEpwT5/QIep7MgqKuxghEG44xCu7HruOAjPdOb3x0geXv5O/hd0nHpQpWO+r5MjYTpMvJg==",
"_location": "/dropbox",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"registry": true,
"raw": "dropbox",
"name": "dropbox",
"escapedName": "dropbox",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/dropbox/-/dropbox-10.34.0.tgz",
"_shasum": "a4b17dad4c320855fe45b5b9786a8aaf869c3ade",
"_spec": "dropbox",
"_where": "C:\\Users\\lenovo\\TSA",
"browser": "dist/Dropbox-sdk.min.js",
"bugs": {
"url": "https://github.com/dropbox/dropbox-sdk-js/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "Brad Rogers",
"email": "brad12rogers@gmail.com"
},
{
"name": "Andrew Lawson",
"email": "alawson@dropbox.com"
},
{
"name": "James Sidhu",
"email": "james.thomas.sidhu@gmail.com"
},
{
"name": "John Vilk",
"email": "jvilk@cs.umass.edu"
},
{
"name": "Steve Klebanoff",
"email": "steve.klebanoff@gmail.com"
},
{
"name": "Bohdan Tereta",
"email": "Bohdan.Tereta@gmail.com"
}
],
"dependencies": {
"node-fetch": "^2.6.1"
},
"deprecated": false,
"description": "The Dropbox JavaScript SDK is a lightweight, promise based interface to the Dropbox v2 API that works in both nodejs and browser environments.",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@testing-library/dom": "^7.24.5",
"@types/node": "^14.11.2",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"express": "^4.17.1",
"express-urlrewrite": "^1.3.0",
"gh-pages": "^3.1.0",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.6",
"jsdom": "^16.4.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prompt": "^1.0.0",
"rollup": "^2.28.2",
"rollup-endpoint": "^0.2.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^9.0.3",
"typescript": "^4.0.3"
},
"directories": {
"example": "examples",
"test": "test"
},
"engines": {
"node": ">=0.10.3"
},
"files": [
"*.md",
"LICENSE",
"index.js",
"src",
"lib",
"types",
"dist",
"es",
"cjs"
],
"homepage": "https://github.com/dropbox/dropbox-sdk-js#readme",
"jsnext:main": "es/index.js",
"keywords": [
"dropbox",
"files",
"sync",
"sdk",
"client"
],
"license": "MIT",
"main": "cjs/index.js",
"module": "es/index.js",
"name": "dropbox",
"peerDependencies": {
"@types/node-fetch": "^2.5.7"
},
"registry": "npm",
"repository": {
"type": "git",
"url": "git+https://github.com/dropbox/dropbox-sdk-js.git"
},
"scripts": {
"build": "npm run build:es && npm run build:cjs && npm run build:umd && npm run build:umd:min",
"build:cjs": "cross-env BABEL_ENV=commonjs babel src -d cjs/src && cross-env BABEL_ENV=commonjs babel lib -d cjs/lib && cross-env BABEL_ENV=commonjs babel index.js -d cjs",
"build:es": "cross-env BABEL_ENV=es babel src -d es/src && cross-env BABEL_ENV=es babel lib -d es/lib && cross-env BABEL_ENV=es babel index.js -d es",
"build:umd": "cross-env BABEL_ENV=es BUNDLE_TYPE=normal rollup -c -i index.js -o dist/Dropbox-sdk.js -n Dropbox",
"build:umd:min": "cross-env BABEL_ENV=es BUNDLE_TYPE=minified rollup -c -i index.js -o dist/Dropbox-sdk.min.js -n Dropbox",
"clean": "rm -rf dist es cjs",
"coverage:integration": "cross-env BABEL_ENV=coverage nyc --reporter=lcov npm run test:integration",
"coverage:unit": "cross-env BABEL_ENV=coverage nyc --reporter=lcov npm run test:unit",
"generate-docs": "jsdoc -c ./.jsdoc.json",
"lint": "eslint --ext .js,.jsx,.ts .",
"lint-fix": "eslint --fix --ext .js,.jsx,.ts .",
"report": "nyc report --reporter=lcov --reporter=text",
"test": "npm run test:typescript && npm run test:unit",
"test:build": "mocha --timeout 100000 --require @babel/register test/build/*.js",
"test:integration": "mocha --timeout 10000 --require @babel/register test/integration/**/*.js",
"test:typescript": "tsc --build test/types",
"test:unit": "mocha --require @babel/register test/unit/**/*.js"
},
"types": "types/index",
"typings": "types/index",
"version": "10.34.0"
}
|