-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "js-secp256k1",
"version": "0.2.3",
"description": "Compiled webassembly of bitcoin secp256k1",
"main": "index.js",
"dependencies": {
"buffer": "^5.4.3",
"is-buffer": "^2.0.3"
},
"devDependencies": {
"cross-env": "^7.0.3",
"exports-loader": "^0.7.0",
"file-loader": "^3.0.1",
"geckodriver": "^1.19.0",
"jest": "24.3.0",
"jest-runner-mocha": "^0.6.0",
"secp256k1": "^3.7.1",
"selenium-webdriver": "^4.0.0-alpha.5",
"wasm-loader": "^1.3.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack .",
"test": "NODE_V8_COVERAGE=./coverage jest --config ./jest.config.js --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sc0Vu/js-secp256k1.git"
},
"keywords": [
"bitcoin",
"wasm",
"secp256k1"
],
"author": "sc0vu <alk03073135@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sc0Vu/js-secp256k1/issues"
},
"homepage": "https://github.com/sc0Vu/js-secp256k1#readme"
}