-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1018 Bytes
/
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
{
"name": "@criipto/auth-js",
"version": "3.7.2",
"description": "",
"types": "dist/index.d.ts",
"main": "dist/criipto-auth.cjs.js",
"module": "dist/criipto-auth.esm.js",
"unpkg": "dist/criipto-auth.umd.js",
"scripts": {
"test": "jest",
"coverage": "jest --collect-coverage",
"clean": "rm -rf ./dist/",
"prepublishOnly": "npm run clean && npm run build",
"build": "webpack --config webpack.config.js && tsc --declaration --emitDeclarationOnly",
"dev": "webpack --config webpack.config.dev.js --watch",
"example": "npx http-server"
},
"author": "",
"devDependencies": {
"@types/jest": "^28.0.0",
"@types/qrcode": "^1.4.2",
"copy-webpack-plugin": "^9.0.1",
"jest": "^28.0.0",
"jest-transform-stub": "^2.0.0",
"ts-jest": "^28.0.0",
"ts-loader": "^9.3.1",
"typescript": "^4.7.0",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"jose": "^4.15.5",
"qrcode": "^1.5.1"
}
}