This repository was archived by the owner on Oct 21, 2023. It is now read-only.
forked from multiversx/mx-deprecated-core-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.58 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.58 KB
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
{
"name": "@elrondnetwork/elrond-core-js",
"version": "1.28.0",
"description": "Contains crypto/account functionality that can work together with the go implementation",
"main": "dist/index.js",
"dependencies": {
"@elrondnetwork/bls-wasm": "^0.3.3",
"bech32": "^1.1.3",
"bignumber.js": "^9.0.0",
"bip39": "^3.0.2",
"bls-signatures": "^0.2.4",
"ed25519-hd-key": "^1.1.2",
"jssha": "^2.3.1",
"scryptsy": "^2.1.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.8.4",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.2",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"babel-preset-stage-2": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"del": "^4.1.1",
"exorcist": "^1.0.1",
"gulp": "^4.0.2",
"gulp-jshint": "^2.1.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^3.0.2",
"jshint": "^2.11.0",
"mocha": "^7.1.0",
"path": "^0.12.7",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"scripts": {
"test": "mocha",
"prepublishOnly": "npm run build",
"build": "rm -rf dist && npx babel src -d dist",
"build:umd": "rm -rf dist && webpack --output-file index.js",
"build:npx": "rm -rf dist && npx babel src -d dist"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-async-to-generator",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-runtime"
]
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ElrondNetwork/elrond-core-js.git"
},
"keywords": [
"eddsa25519",
"schnorr",
"crypto"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ElrondNetwork/elrond-core-js/issues"
},
"homepage": "https://github.com/ElrondNetwork/elrond-core-js#readme"
}