forked from CementDAO/Fixidity
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.59 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": "@hq20/fixidity",
"version": "0.1.0-alpha.2",
"description": "Fixed precision decimal math library for Solidity",
"files": [
"contracts",
"!contracts/mocks",
"!contracts/Migrations.sol"
],
"scripts": {
"test": "scripts/test.sh",
"lint:js": "eslint *.js .",
"lint:sol": "solium -d contracts",
"lint": "yarn lint:sol && yarn lint:js",
"security": "docker run --rm --memory=3g -v $(pwd):/tmp -w \"/tmp/\" mythril/myth --truffle",
"coverage": "yarn build && SOLIDITY_COVERAGE=true scripts/test.sh",
"build": "truffle compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hq20/fixidity.git"
},
"author": "gadiguy@gmail.com",
"contributors": [
"alberto@techhq.io",
"bernardo@techhq.io"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cementdao/fixidity/issues"
},
"homepage": "https://github.com/cementdao/fixidity#readme",
"dependencies": {
"bignumber.js": "9.0.0",
"@truffle/hdwallet-provider": "1.0.31"
},
"devDependencies": {
"chai": "4.2.0",
"chai-bignumber": "3.0.0",
"eslint": "5.13.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"eth-gas-reporter": "0.2.15",
"ethlint": "1.2.5",
"ganache-cli": "6.9.1",
"solc": "0.6.3",
"solidity-coverage": "0.7.2",
"truffle": "5.1.14"
}
}