forked from starkware-libs/starkware-crypto-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.84 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
{
"name": "@starkware-industries/starkware-crypto-utils",
"version": "0.0.2-0",
"description": "Signatures, keys and Pedersen hash on STARK friendly elliptic curve",
"keywords": [
"stark",
"signature",
"EC",
"Elliptic",
"curve",
"Cryptography"
],
"homepage": "https://github.com/starkware-libs/starkware-crypto-utils#readme",
"bugs": {
"url": "https://github.com/starkware-libs/starkware-crypto-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starkware-libs/starkware-crypto-utils.git"
},
"license": "Apache-2.0",
"author": "StarkWare Industries Ltd.",
"main": "src/js/index.js",
"directories": {
"test": "test"
},
"files": [
"src/config",
"src/js",
"package.json",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"test": "mocha",
"pre-release": "standard-version --prerelease --skip.changelog --releaseCommitMessageFormat 'chore(prerelease): {{currentTag}}'",
"pushTaggedRelease": "git push --follow-tags --no-verify origin master",
"release": "standard-version",
"release:dry": "standard-version --dry-run",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"**/*.+(ts|js|json|md|html|yml)\""
},
"dependencies": {
"bip39": "^3.0.4",
"bn.js": "^4.12.0",
"brorand": "^1.1.0",
"elliptic": "v6.5.4",
"enc-utils": "^3.0.0",
"ethereumjs-wallet": "^1.0.2",
"hash.js": "^1.1.7",
"hmac-drbg": "^1.0.1",
"inherits": "^2.0.4",
"js-sha3": "^0.8.0",
"minimalistic-assert": "^1.0.1",
"minimalistic-crypto-utils": "^1.0.1"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.2.2",
"prettier": "^2.5.1",
"standard-version": "^9.3.2"
}
}