-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "@dimensiondev/mask-webauthn",
"version": "0.0.1",
"description": "A WebAuthn authenticator implementation",
"keywords": [
"webauthn"
],
"repository": "https://github.com/DimensionDev/MaskWebAuthn",
"license": "MIT",
"files": [
"dist",
"api.d.ts",
"backend.d.ts"
],
"exports": {
"./api": "./dist/api.js",
"./backend": "./dist/backend.js"
},
"scripts": {
"start": "run-p watch-tsc watch-rollup serve",
"build": "run-p tsc rollup",
"test": "jest",
"tsc": "tsc -b .",
"watch-tsc": "tsc -b . -w",
"rollup": "rollup -c",
"watch-rollup": "rollup -w -c",
"lint": "eslint --ext .ts,.tsx,.js --cache --fix",
"serve": "http-server -o -c-1"
},
"dependencies": {
"btoa": "^1.2.1",
"buffer": "^6.0.3",
"cbor-redux": "^0.3.1",
"tslib": "^2.2.0"
},
"devDependencies": {
"@peculiar/webcrypto": "^1.1.7",
"@rollup/plugin-sucrase": "^3.1.0",
"@types/btoa": "^1.2.3",
"@types/jest": "^26.0.23",
"cbor": "^7.0.5",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unused-imports": "^1.0.0",
"http-server": "^0.12.3",
"jest": "^27.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"rollup": "^2.50.5",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
}
}