-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.13 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
{
"name": "slip32",
"version": "1.0.1",
"description": "Typescript implementation of the SLIP-0032 extended serialization format for BIP-32 wallets",
"repository": {
"type": "git",
"url": "git+https://github.com/witnet/ts-slip32.git"
},
"homepage": "https://github.com/witnet/ts-slip32#readme",
"bugs": {
"url": "https://github.com/witnet/ts-slip32/issues"
},
"author": "Mario Cao <mario@witnet.io>",
"license": "MIT",
"main": "dist/slip32.js",
"module": "dist/slip32.cjs.js",
"types": "dist/types/slip32.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist docs",
"clean-deps": "rimraf node_modules",
"reinstall": "yarn clean-deps && yarn install",
"test": "jest -c jest.js test",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.js",
"postbuild": "typedoc --out docs --tsconfig tsconfig.json",
"docs": "typedoc --out docs --tsconfig tsconfig.json",
"fmt-verify": "tsfmt --useTsfmt tsfmt.json --verify src/*.ts test/*.ts",
"fmt": "tsfmt --useTsfmt tsfmt.json src/*.ts test/*.ts",
"fmt!": "tsfmt --useTsfmt tsfmt.json -r src/*.ts test/*.ts",
"lint": "tslint -c tslint.json --force src/*.ts test/*.ts",
"travis": "yarn lint && yarn fmt-verify && yarn test && yarn build"
},
"keywords": [
"bip32",
"bitcoin",
"witnet",
"satoshilabs",
"hd-wallet",
"bech32",
"blockchain",
"slip-0032",
"slip32"
],
"devDependencies": {
"@types/jest": "^23.0.2",
"jest": "^23.1.0",
"rollup": "^0.60.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-typescript2": "^0.15.0",
"source-map-support": "^0.5.6",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typedoc": "^0.11.1",
"typescript": "^2.9.1",
"typescript-formatter": "^7.2.2"
},
"dependencies": {
"bech32": "^1.1.3",
"secp256k1": "^3.5.0"
}
}