-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
53 lines (53 loc) · 1.63 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
{
"name": "fixidity",
"version": "0.1.0",
"description": "Fixed precision decimal math library for Solidity",
"main": "truffle-config.js",
"files": [
"contracts"
],
"scripts": {
"test:local": "truffle test --network test",
"test:docker": "echo TODO!",
"lint:js": "eslint *.js .",
"lint:sol": "solium -d contracts",
"lint": "npm run lint:sol && npm run lint:js",
"security": "docker run --rm --memory=3g -v $(pwd):/tmp -w \"/tmp/\" mythril/myth --truffle",
"describe": "surya describe contracts/*.sol",
"coverage": "solidity-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cementdao/fixidity.git"
},
"author": "[email protected]",
"contributors": [
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cementdao/fixidity/issues"
},
"homepage": "https://github.com/cementdao/fixidity#readme",
"dependencies": {
"bignumber.js": "8.1.1"
},
"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",
"ganache-cli": "6.4.1",
"eth-gas-reporter": "^0.1.12",
"ethlint": "1.2.3",
"solc": "^0.5.7",
"solidity-coverage": "0.6.0-beta.4",
"surya": "0.2.8",
"truffle": "5.0.13",
"truffle-hdwallet-provider": "^1.0.7"
}
}