-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "dropbox-oauth-popup",
"version": "3.1.0",
"registry": "npm",
"description": "This is a simple addition built onto the Dropbox SDK that allows for OAuth in the browser to be done via a popup window.",
"homepage": "https://github.com/rogebrd/dropbox-oauth-popup",
"author": "Brad Rogers <brad12rogers@gmail.com>",
"license": "MIT",
"main": "src/dropboxPopup.js",
"browser": "dist/dropboxPopup.js",
"scripts": {
"test": "node test/index.js",
"build": "rollup -c",
"lint": "eslint *.js .",
"lint-fix": "eslint *.js . --fix",
"generate-docs": "jsdoc -c ./.jsdoc.json",
"clean": "rm -rf docs dist"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/preset-env": "^7.12.0",
"@rollup/plugin-babel": "^5.2.1",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.6.5",
"express": "^4.17.1",
"jsdoc": "^3.6.6",
"rollup": "^2.30.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"dropbox": "^9.8.0"
},
"browserslist": [
"> 0.25%",
"not dead"
],
"files": [
"*.md",
"LICENSE",
"src",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/rogebrd/dropbox-oauth-popup.git"
},
"bugs": {
"url": "https://github.com/rogebrd/dropbox-oauth-popup/issues"
},
"keywords": [
"dropbox",
"auth",
"oauth",
"popup",
"browser",
"front-end",
"window"
]
}