-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.77 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
{
"name": "@iov/ethereum-smart-contracts",
"version": "0.0.0",
"description": "IOV's smart contracts for Ethereum",
"private": true,
"author": "IOV SAS <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/iov-one/ethereum-smart-contracts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iov-one/ethereum-smart-contracts.git"
},
"bugs": {
"url": "https://github.com/iov-one/ethereum-smart-contracts/issues"
},
"scripts": {
"analyze:human": "./scripts/slither.sh",
"analyze:inheritance": "./scripts/slither-inheritance.sh",
"analyze:symbolic": "./scripts/manticore.sh",
"flatten": "rm -rf ./build/flattened && ./scripts/flatten.sh",
"prebuild": "yarn flatten",
"build": "truffle compile",
"postbuild": "rm -rf ./build/exports && ./scripts/export.sh",
"format": "prettier --write --loglevel warn \"./{,migrations,test}/*.{js,json,md}\"",
"lint": "yarn run lint:js && yarn run lint:sol",
"lint:js": "eslint .",
"lint:js:fix": "eslint --fix .",
"lint:sol": "solhint \"contracts/**/*.sol\"",
"pretest": "[ -n \"$SKIP_FLATTEN\" ] || yarn flatten",
"test": "./scripts/test.sh",
"test:property": "./scripts/echidna.sh",
"verify": "truffle run verify"
},
"devDependencies": {
"@iov/ethereum": "^0.12.3",
"bn.js": "^4.11.8",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.1.1",
"eslint": "^5.15.2",
"eslint-config-prettier": "^4.1.0",
"ganache-cli": "^6.4.1",
"openzeppelin-solidity": "^2.2.0",
"openzeppelin-test-helpers": "^0.3.2",
"prettier": "^1.16.4",
"solhint": "^2.0.0",
"truffle": "^5.0.15",
"truffle-flattener": "webmaster128/truffle-flattener#whitespacing",
"truffle-security": "^1.3.7"
}
}