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.68 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.1.1",
"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",
"fmt!": "solium -d contracts --fix && eslint ./test --fix",
"solium": "solium -d contracts",
"solium:fix": "solium -d contracts --fix",
"lint": "eslint ./test",
"lint:fix": "eslint ./test --fix",
"coverage": "solidity-coverage"
},
"dependencies": {
"truffle-hdwallet-provider": "^1.0.11"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eth-gas-reporter": "^0.2.1",
"ethlint": "^1.2.4",
"ganache-cli": "^6.4.4",
"solidity-coverage": "^0.6.0-beta.5",
"truffle": "^5.0.24",
"truffle-assertions": "^0.9.1"
}
}