-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 2.79 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "jsbgl",
"version": "1.0.17",
"description": "JavaScript Bitgesell library",
"main": "dist/jsbgl.js",
"scripts": {
"build:wasm:prebuild": "docker build -f ./Dockerfile.wasm -t wasm-builder .",
"build:wasm:prebuild:no-cache": "docker build --no-cache -f ./Dockerfile.wasm -t wasm-builder .",
"build:wasm:pre": "docker build -f ./Dockerfile.wasm -t wasm-builder .",
"build:wasm": "docker run --rm --name wasm-builder -v $(pwd)/:/jsbgl/ -it wasm-builder /jsbgl/build.wasm.sh",
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 50 --branches 50 --functions 50 --lines 50 ",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"watch:test": "npm t -- -w",
"test": "mocha test/jsbgl.test.js --require @babel/register ",
"cover": "nyc npm t ",
"cover:report": "nyc report --reporter=lcov --reporter=text",
"prebuild": "rimraf dist",
"build": "babel --copy-files -d dist --ignore *.test.js src",
"build:web": "npm run prebuild;webpack --output-filename jsbgl.web.min.js ",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitaps-com/jsbgl.git"
},
"nyc": {
"exclude": "src/btc_crypto.js"
},
"keywords": [
"bitcoin",
"wasm",
"bip32",
"bip39",
"bip44",
"bip49",
"bip84",
"bip141",
"shamir's secret sharing",
"secp256k1"
],
"files": [
"dist",
"README.md"
],
"author": "Aleksey Karpov <[email protected]> (https://bitaps.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitaps-com/jsbgl/issues"
},
"homepage": "https://github.com/bitaps-com/jsbgl#readme",
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/compat-data": "7.8.0",
"@babel/core": "7.8.4",
"@babel/node": "7.8.4",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/register": "7.8.3",
"@babel/runtime": "7.8.4",
"chai": "^4.2.0",
"chai-as-promised": "7.1.1",
"codecov.io": "0.1.6",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.1.0",
"ghooks": "2.0.4",
"install": "0.13.0",
"istanbul": "0.4.5",
"mocha": "6.2.2",
"node-fetch": "2.6.0",
"npm-force-resolutions": "0.0.3",
"nyc": "15.0.0",
"rimraf": "3.0.1",
"semantic-release": "^17.0.3",
"terser-webpack-plugin": "2.3.4",
"webpack": "4.8.3",
"webpack-cli": "2.1.3"
},
"resolutions": {
"@babel/preset-env": "^7.8.7"
},
"dependencies": {
"bn.js": "5.1.1",
"buffer": "5.6.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run cover && npm run check-coverage"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"directories": {
"doc": "docs",
"test": "test"
}
}