forked from witnet/elliptic-curve-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.84 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
{
"name": "elliptic-curve-solidity",
"version": "0.2.4",
"description": "Elliptic Curve arithmetic for up to 256-bit curves written in solidity",
"repository": {
"type": "git",
"url": "git+https://github.com/witnet/elliptic-curve-solidity.git"
},
"keywords": [
"cryptography",
"ethereum",
"solidity",
"elliptic",
"ecc",
"curve",
"ecdsa",
"secp256k1",
"secp256r1",
"secp192r1"
],
"author": "Witnet Foundation <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/witnet/elliptic-curve-solidity/issues"
},
"homepage": "https://github.com/witnet/elliptic-curve-solidity#readme",
"scripts": {
"test": "truffle test",
"test:local": "truffle test --network local",
"console": "truffle console",
"postinstall": "npm run compile-contracts",
"compile-contracts": "truffle compile --all",
"fmt": "solium -d contracts && eslint ./test ./benchmark",
"fmt!": "solium -d contracts --fix && eslint ./test --fix ./benchmark --fix",
"solium": "solium -d contracts",
"solium:fix": "solium -d contracts --fix",
"lint": "eslint ./test",
"lint:fix": "eslint ./test --fix",
"coverage": "truffle run coverage --temp build",
"gas-analysis": "truffle test ./benchmark/EcGasHelper.sol ./benchmark/gas.js",
"coveralls": "truffle run coverage --temp build && cat coverage/lcov.info | coveralls"
},
"devDependencies": {
"eslint": "7.13.0",
"eslint-config-standard": "16.0.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"eth-gas-reporter": "0.2.18",
"ethlint": "1.2.5",
"ganache-cli": "6.12.1",
"solidity-coverage": "0.7.12",
"solium": "1.2.5",
"truffle": "5.1.53",
"truffle-assertions": "0.9.2"
}
}