forked from StricaHQ/typhonjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.76 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
{
"name": "@stricahq/typhonjs",
"version": "1.0.2",
"description": "Pure JS Cardano Wallet library",
"main": "dist/index.js",
"keywords": [
"typhon",
"strica",
"cardano",
"cardano wallet",
"typhon wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/StricaHQ/typhonjs.git"
},
"bugs": {
"url": "https://github.com/StricaHQ/typhonjs/issues"
},
"homepage": "https://github.com/StricaHQ/typhonjs#readme",
"scripts": {
"build": "rm -rf dist && tsc && webpack",
"lint": "node_modules/.bin/eslint src/**/*.ts",
"lint:fix": "node_modules/.bin/eslint --fix .",
"test": "ts-mocha tests/**/*.spec.ts",
"docs": "rm -rf docs && typedoc"
},
"author": "Strica",
"license": "Apache-2.0",
"dependencies": {
"@stricahq/cbors": "1.0.0",
"bech32": "^2.0.0",
"bignumber.js": "^9.0.1",
"blakejs": "^1.1.1",
"bs58": "^4.0.1",
"buffer": "^6.0.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"chai": "^4.3.4",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.0.0",
"prettier": "^2.3.1",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "^5.3.0",
"ts-loader": "^9.2.6",
"ts-mocha": "^8.0.0",
"typedoc": "^0.22.10",
"typescript": "^4.4.2",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md",
"package.json"
]
}