-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "dexie-encrypted",
"version": "2.0.0",
"description": "Encryption middleware for Dexie",
"main": "dist",
"license": "MIT",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/mark43/dexie-encrypted.git"
},
"dependencies": {
"@stablelib/utf8": "1.0.0",
"tweetnacl": "1.0.3",
"typeson": "5.18.2",
"typeson-registry": "1.0.0-alpha.38"
},
"devDependencies": {
"@types/jest": "26.0.10",
"dexie": "^3.0.0",
"dexie-export-import": "^1.0.0-beta.13",
"eslint": "^6.3.0",
"fake-indexeddb": "^2.1.1",
"jest": "26.4.0",
"prettier": "^1.18.2",
"text-encoding": "^0.7.0",
"ts-jest": "26.2.0",
"tsc": "1.20150623.0",
"typescript": "3.9.7"
},
"peerDependencies": {
"dexie": "^3.0.0"
},
"scripts": {
"test": "jest",
"build": "tsc",
"format": "prettier index.js README.md --write"
}
}