-
Notifications
You must be signed in to change notification settings - Fork 354
/
package.json
113 lines (113 loc) · 4.26 KB
/
package.json
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
{
"name": "dropbox",
"version": "10.34.0",
"registry": "npm",
"description": "The Dropbox JavaScript SDK is a lightweight, promise based interface to the Dropbox v2 API that works in both nodejs and browser environments.",
"main": "cjs/index.js",
"browser": "dist/Dropbox-sdk.min.js",
"typings": "types/index",
"types": "types/index",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"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: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: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",
"build": "npm run build:es && npm run build:cjs && npm run build:umd && npm run build:umd:min",
"lint": "eslint --ext .js,.jsx,.ts .",
"lint-fix": "eslint --fix --ext .js,.jsx,.ts .",
"test": "npm run test:typescript && npm run test:unit",
"test:typescript": "tsc --build test/types",
"test:integration": "mocha --timeout 10000 --require @babel/register test/integration/**/*.js",
"test:unit": "mocha --require @babel/register test/unit/**/*.js",
"test:build": "mocha --timeout 100000 --require @babel/register test/build/*.js",
"report": "nyc report --reporter=lcov --reporter=text",
"clean": "rm -rf dist es cjs",
"generate-docs": "jsdoc -c ./.jsdoc.json",
"coverage:unit": "cross-env BABEL_ENV=coverage nyc --reporter=lcov npm run test:unit",
"coverage:integration": "cross-env BABEL_ENV=coverage nyc --reporter=lcov npm run test:integration"
},
"files": [
"*.md",
"LICENSE",
"index.js",
"src",
"lib",
"types",
"dist",
"es",
"cjs"
],
"keywords": [
"dropbox",
"files",
"sync",
"sdk",
"client"
],
"homepage": "https://github.com/dropbox/dropbox-sdk-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dropbox/dropbox-sdk-js.git"
},
"bugs": {
"url": "https://github.com/dropbox/dropbox-sdk-js/issues"
},
"license": "MIT",
"directories": {
"example": "examples",
"test": "test"
},
"engines": {
"node": ">=0.10.3"
},
"contributors": [
"Brad Rogers <brad12rogers@gmail.com>",
"Andrew Lawson <alawson@dropbox.com>",
"James Sidhu <james.thomas.sidhu@gmail.com>",
"John Vilk <jvilk@cs.umass.edu>",
"Steve Klebanoff <steve.klebanoff@gmail.com>",
"Bohdan Tereta <Bohdan.Tereta@gmail.com>"
],
"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"
},
"peerDependencies": {
"@types/node-fetch": "^2.5.7"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}