-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
52 lines (52 loc) · 1.54 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
{
"name": "elliptic-curve-solidity",
"version": "0.2.5",
"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 <info@witnet.foundation>",
"license": "MIT",
"bugs": {
"url": "https://github.com/witnet/elliptic-curve-solidity/issues"
},
"homepage": "https://github.com/witnet/elliptic-curve-solidity#readme",
"scripts": {
"benchmark": "truffle test ./benchmark/EcGasHelper.sol ./benchmark/gas.js",
"console": "truffle console",
"compile": "truffle compile --all",
"fmt:js": "eslint \"**/*.js\"",
"fmt:sol": "solhint --max-warnings 0 \"**/*.sol\"",
"fmt!:js": "eslint \"**/*.js\" --fix",
"fmt!:sol": "solhint --max-warnings 0 \"**/*.sol\" --fix",
"fmt!": "npm run fmt!:js && npm run fmt!:sol",
"fmt": "npm run fmt:js && npm run fmt:sol",
"test": "truffle test",
"test:local": "truffle test --network local"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.42.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"eth-gas-reporter": "^0.2.25",
"solhint": "^3.4.1",
"truffle": "^5.9.3",
"truffle-assertions": "^0.9.2"
}
}