This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
forked from dropbox/dropbox-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 2.02 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
{
"name": "react-native-dropbox-sdk",
"version": "0.4.0",
"dropboxVersion": "2.5.7",
"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": "src/index.js",
"typings": "src/index",
"files": [
"*.md",
"docs",
"dist",
"generator",
"src",
"conf.json",
"*.config.js"
],
"scripts": {
"build": "npm run build-cjs && npm run build-umd && npm run generate-tsds && npm run compressed-size",
"build-cjs": "webpack",
"build-umd": "webpack -p --config webpack-umd.config.js",
"compressed-size": "echo 'Dropbox-sdk.min.js gzipped will weigh' $(cat dist/Dropbox-sdk.min.js | gzip -9 | wc -c | pretty-bytes)",
"prepublish": "npm run build",
"publish-docs": "rm -rf generated-docs && npm run generate-docs && gh-pages -d generated-docs",
"generate-docs": "jsdoc -c ./conf.json -d generated-docs -t ./node_modules/ink-docstrap/template -R docs/README.md -r ./src",
"lint": "eslint src --ignore-path src/types.js",
"start": "node examples/javascript/server.js",
"test": "npm run lint && mocha 'test/*.js'",
"generate-tsds": "node generator/typescript/typescript-copy.js dist"
},
"keywords": [
"dropbox",
"files",
"sync",
"sdk",
"client"
],
"repository": "https://github.com/perry-mitchell/react-native-dropbox-sdk",
"bugs": "https://github.com/perry-mitchell/react-native-dropbox-sdk/issues",
"author": "Perry Mitchell <[email protected]>",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"express": "^4.13.4",
"express-urlrewrite": "^1.2.0",
"gh-pages": "^0.11.0",
"ink-docstrap": "^1.2.1",
"jsdoc": "^3.4.0",
"mocha": "^2.4.5",
"pretty-bytes": "^2.0.1",
"prompt": "^1.0.0",
"sinon": "^1.17.3",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1"
},
"dependencies": {
"es6-promise": "^4.1.1",
"node-fetch": "^1.7.3"
}
}