-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "mobiletto",
"version": "2.0.8",
"description": "A storage layer that presents a uniform interface to Amazon S3, Backblaze B2, and local storage",
"type": "module",
"keywords": [
"storage",
"s3",
"b2",
"simple",
"filesystem",
"mobiletto"
],
"homepage": "https://github.com/cobbzilla/mobiletto",
"author": "Jonathan Cobb <bqppl0m2@duck.com> (https://github.com/cobbzilla)",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/cobbzilla"
},
"repository": {
"type": "git",
"url": "https://github.com/cobbzilla/mobiletto"
},
"license": "Apache-2.0",
"scripts": {
"test": "mocha --timeout 30000 ./test/crypt.spec.js",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"lint": "npx eslint src test",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src test --check",
"prettier:fix": "npm run prettier -- --write"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"devDependencies": {
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.1.6"
},
"dependencies": {
"mobiletto-base": "^2.0.29",
"mobiletto-driver-b2": "^2.0.7",
"mobiletto-driver-generic": "^2.0.10",
"mobiletto-driver-indexeddb": "^2.0.13",
"mobiletto-driver-local": "^2.0.6",
"mobiletto-driver-s3": "^2.0.6"
}
}