This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.16 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
{
"name": "@indykiteone/indykite-sdk-web",
"version": "0.2.19",
"description": "Web SDK for IndyKite.id",
"main": "./lib/services/core/index.js",
"types": "./lib/services/core/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"fix:prettier": "prettier --loglevel warn --write .",
"lint:prettier": "prettier --check .",
"clean": "rimraf dist",
"test": "jest --config=jest.config.js",
"build": "webpack",
"check-es": "es-check es6 ./dist/*.js --verbose",
"coverage": "jest --coverage",
"coverage-ci": "jest --ci --silent --coverage --coverageReporters=json",
"coverage-html": "jest --coverage --silent --coverageReporters=html",
"prepare": "husky install",
"prepublishOnly": "npm run clean && npm run build",
"generate-docs": "typedoc"
},
"keywords": [
"indykite",
"identity",
"sdk",
"js",
"react",
"angular",
"vue",
"node"
],
"author": "IndyKite",
"license": "Apache-2.0",
"dependencies": {
"babel-jest": "^29.4.3",
"core-js": "^3.29.1",
"crypto-js": "^4.1.1",
"intl-messageformat": "^10.3.3",
"node-fetch": "2.7.0",
"qrcode": "1.5.3",
"query-string": "^9.0.0",
"regenerator-runtime": "^0.14.0"
},
"devDependencies": {
"node-polyfill-webpack-plugin": "^3.0.0",
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.14.8",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@types/jest": "^29.5.0",
"babel-loader": "^9.0.0",
"css-loader": "6.10.0",
"es-check": "^7.0.1",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.4.3",
"mini-css-extract-plugin": "^2.7.5",
"prettier": "3.2.5",
"rimraf": "^5.0.0",
"sass": "^1.60.0",
"sass-loader": "14.1.1",
"typedoc": "^0.25.0",
"typescript": "5.3.3",
"webpack": "^5.76.3",
"webpack-cli": "5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indykite/indykite-sdk-web.git"
},
"bugs": {
"url": "https://github.com/indykite/indykite-sdk-web/issues"
},
"homepage": "https://github.com/indykite/indykite-sdk-web#readme"
}