-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 1.74 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
{
"name": "@stricahq/bip32ed25519",
"version": "1.1.0",
"description": "Pure javascript implementation of Bip32Ed25519, used for Cardano blockchain key pair.",
"main": "dist/index.js",
"keywords": [
"bip32ed25519",
"strica",
"cardano"
],
"repository": {
"type": "git",
"url": "https://github.com/StricaHQ/bip32Ed25519.git"
},
"bugs": {
"url": "https://github.com/StricaHQ/bip32Ed25519/issues"
},
"homepage": "https://github.com/StricaHQ/bip32Ed25519#readme",
"scripts": {
"build": "rm -rf dist && tsc && webpack",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts --fix'",
"test": "ts-mocha tests/**/*.spec.ts",
"docs": "rm -rf docs && typedoc"
},
"author": "Strica",
"license": "Apache-2.0",
"dependencies": {
"blakejs": "^1.1.1",
"bn.js": "^5.2.0",
"buffer": "^6.0.3",
"chai": "^4.3.4",
"elliptic": "6.5.4",
"hash.js": "^1.1.7",
"pbkdf2": "^3.1.2"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/elliptic": "^6.4.14",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"@types/pbkdf2": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"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",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"ts-mocha": "^8.0.0",
"typedoc": "^0.22.8",
"typescript": "^4.3.2",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md",
"package.json"
]
}