-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
64 lines (64 loc) · 1.83 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
{
"name": "symbol-hd-wallets",
"version": "0.14.3",
"description": "Symbol library to handle hyper-deterministic wallets",
"author": "Grégory Saive from Using Blockchain Ltd <[email protected]>",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"@types/bip32": "^1.0.2",
"bip32": "^1.0.4",
"bip39": "^3.0.4",
"bip44-constants": "^89.0.0",
"bs58check": "^2.1.2",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"crypto-js": "^4.1.1",
"js-sha3": "^0.8.0",
"tiny-secp256k1": "^2.1.2",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"symbol-sdk": "^1.0.3",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.10",
"typemoq": "^2.1.0",
"typescript": "^4.5.4"
},
"scripts": {
"pretest": "npm run build",
"build": "rm -rf dist/ && tsc",
"lint:all": "tslint --project .",
"lint:fix": "tslint --fix --project .",
"test": "mocha --ui bdd --recursive ./dist/test",
"test:cov": "nyc --reporter=lcov --reporter=text-summary npm t",
"test:coveralls": "npm run test:cov | coveralls",
"coveralls-report": "cat ./coverage/lcov.info | coveralls",
"doc": "typedoc --entryPointStrategy expand --out \"ts-docs/$(npm run version --silent)\" src",
"version": "echo $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nemtech/symbol-hd-wallets.git"
},
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/nemtech/symbol-hd-wallets/issues"
},
"homepage": "https://github.com/nemtech/symbol-hd-wallets#readme",
"nyc": {
"exclude": [
"**/*.spec.js"
]
}
}