-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 859 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 859 Bytes
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
{
"name": "@snapauth/sdk",
"version": "0.3.0",
"description": "SnapAuth JS/TS SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"test": "jest",
"docs": "typedoc",
"prepublishOnly": "npm run build"
},
"keywords": [
"2fa",
"fido",
"mfa",
"passkeys",
"snapauth",
"u2f",
"webauthentication",
"webauthn"
],
"devDependencies": {
"@types/jest": "^29",
"jest": "^29",
"ts-jest": "^29",
"ts-loader": "^9.5.1",
"typescript": "^5.3",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"files": [
"dist"
],
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snapauthapp/sdk-typescript.git"
},
"license": "BSD-3-Clause"
}