-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "@buttercup/dropbox-client",
"version": "2.2.0",
"description": "Dropbox client library",
"exports": "./dist/index.js",
"react-native": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"test": "npm run test:all",
"test:all": "npm run build && nyc mocha 'test/specs/**/*.spec.js'"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/buttercup/dropbox-client.git"
},
"keywords": [
"dropbox",
"client"
],
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/buttercup/dropbox-client/issues"
},
"homepage": "https://github.com/buttercup/dropbox-client#readme",
"dependencies": {
"@buttercup/fetch": "^0.2.1",
"hot-patcher": "^2.0.1",
"layerr": "^2.0.1",
"node-fetch": "^3.3.2",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@types/node": "^20.9.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"mocha": "^10.2.0",
"nested-property": "^4.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^17.0.1",
"typescript": "^5.2.2"
}
}