-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.81 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
82
83
84
85
86
87
88
89
90
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@affidaty/t2-lib-core",
"version": "2.6.2",
"description": "Official Trinci 2 SDK JavaScript library core",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/browser/t2libcore.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"schemas",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"directories": {
"test": "tests",
"doc": "docs",
"lib": "dist"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"alea": "^1.0.1",
"bs58": "^5.0.0",
"fast-sha256": "^1.3.0",
"js-crypto-key-utils": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"concurrently": "^8.0.1",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^27.1.4",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.3.0",
"os-browserify": "^0.3.0",
"prettier": "^3.0.3",
"source-map-loader": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.2.2",
"ts-node": "^10.7.0",
"typedoc": "^0.25.1",
"typedoc-plugin-missing-exports": "^2.1.0",
"typescript": "^5.2.2",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.0"
},
"scripts": {
"test": "jest",
"test-cov": "jest --coverage",
"build-cjs": "tsc -p tsconfig.cjs.json",
"build-esm": "tsc -p tsconfig.esm.json",
"build-browser": "webpack --config webpack.config.js",
"build": "concurrently \"npm:build-cjs\" \"npm:build-esm\" \"npm:build-browser\"",
"docs": "typedoc --options typedoc.json",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint --fix . --ext .js,.ts",
"lint:report": "eslint . --ext .js,.ts -f json -o eslint_report.json",
"pre-publish": "npm i && npm run test && npm run lint && npm run build && npm run docs"
},
"repository": {
"type": "git",
"url": "https://github.com/affidaty-blockchain/t2-lib-core.git"
},
"keywords": [
"affidaty",
"blockchain",
"trinci",
"ECDSA",
"Sovereign Identity"
],
"author": {
"name": "Affidaty S.p.A",
"url": "https://affidaty.io/"
},
"contributors": [
{
"name": "Aliaksei Vitsiuk",
"email": "[email protected]"
}
],
"license": "AGPL-3.0-only"
}