forked from fission-codes/keystore-idb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.96 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@zkorum/keystore-idb",
"version": "0.18.1",
"description": "In-browser key management with IndexedDB and the Web Crypto API",
"keywords": [],
"type": "module",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./lib/*": "./lib/*",
"./*": "./lib/*",
"./package.json": "./package.json"
},
"types": "lib/index.d.ts",
"typesVersions": {
"*": {
"lib/index.d.ts": [
"lib/index.d.ts"
],
"lib/*": [
"lib/*"
],
"*": [
"lib/*"
]
}
},
"files": [
"lib",
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE",
"package.json",
"!*.test.ts",
"docs"
],
"author": "Daniel Holmgren <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/fission-suite/keystore-idb"
},
"license": "Apache-2.0",
"engines": {
"node": ">=10.21.0"
},
"scripts": {
"lint": "yarn eslint src/**/*.ts test/**/*.ts",
"prebuild": "rimraf dist",
"build": "tsc && yarn run build:minified",
"build:minified": "node scripts/build-minified.js",
"start": "tsc -w",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"prepare": "yarn build",
"publish-dry": "npm publish --dry-run",
"publish-alpha": "npm publish --tag alpha",
"publish-latest": "npm publish --tag latest"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"esbuild": "^0.12.27",
"eslint": "^7.32.0",
"jest": "^26.0.0",
"jest-config": "^26.0.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"localforage": "^1.10.0",
"one-webcrypto": "^1.0.3",
"uint8arrays": "^3.0.0"
}
}