-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "elliptic-solidity",
"version": "1.0.0",
"description": "Elliptic curve implementation in solidity; includes secp256r1",
"repository": {
"type": "git",
"url": "git://github.com/tdrerup/elliptic-curve-solidity.git"
},
"main": "truffle.js",
"directories": {
"contracts": "contracts",
"migrations": "migrations",
"test": "test"
},
"scripts": {
"clean": "rm -Rf ./build",
"compile": "truffle compile",
"console": "truffle console",
"flatten": "mkdir -p build && truffle-flattener contracts/**/*.sol >> build/bundle.sol",
"lint": "eslint './**/*.js?(x)'",
"migrate": "truffle migrate",
"networks": "truffle networks",
"postpublish": "npm run clean",
"prepublish": "npm run compile",
"test": "npm run clean && truffle test"
},
"author": "tilman drerup",
"license": "MIT",
"keywords": [
"blockchain",
"contract",
"contracts",
"ecc",
"elliptic",
"eth",
"ethereum",
"secp256r1",
"smart",
"smart-contract",
"p256",
"prime256v1"
],
"devDependencies": {
"bignumber.js": "^8.1.1",
"crypto": "^1.0.1",
"ec-pem": "^0.18.0",
"ethers": "^4.0.27",
"eslint": "^5.15.1",
"ethereumjs-util": "^6.1.0",
"ethjs-util": "^0.1.6",
"truffle": "^5.0.7",
"truffle-flattener": "^1.3.0",
"web3": "1.0.0-beta.34",
"web3-utils": "1.0.0-beta.34"
},
"dependencies": {
"solc": "^0.5.5"
}
}