-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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": "cardano-hw-interop-lib",
"version": "3.0.2",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"description": "Library to make CBOR encoded Cardano transactions comply with CIP-0021",
"main": "dist/index.js",
"repository": "github:vacuumlabs/cardano-hw-interop-lib",
"keywords": [
"Cardano",
"CIP-0021"
],
"author": "VacuumLabs <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"bech32": "^2.0.0",
"chai": "^4.3.4",
"cspell": "^6.10.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-vacuumlabs": "^8.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"mocha": "^10.2.0",
"prettier": "^2.6.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"blake2b": "^2.1.4",
"cbor": "^9.0.1"
},
"bugs": {
"url": "https://github.com/vacuumlabs/cardano-hw-interop-lib/issues"
},
"homepage": "https://github.com/vacuumlabs/cardano-hw-interop-lib",
"scripts": {
"clean": "rm -rf dist/",
"build": "tsc -p src/tsconfig.json",
"lint": "eslint src/ test/ --max-warnings=0 --ext .ts,.js",
"prettier:check": "prettier --check src test",
"prettier": "prettier --write src test",
"spell:check": "yarn cspell lint --gitignore '**' 2>/dev/null",
"test": "mocha -r ts-node/register test/**/*.test.ts"
}
}