This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@fitchain/fitchain-contracts",
"version": "0.1.0",
"description": "fitchain ethereum contracts",
"bugs": {
"url": "https://github.com/fitchain/fitchain-contracts/issues"
},
"homepage": "https://github.com/fitchain/fitchain-contracts",
"main": "truffle.js",
"scripts": {
"compile": "truffle compile",
"migrate": "truffle migrate",
"test": "truffle test",
"coverage": "solidity-coverage",
"clean": "rm -rf ./build/",
"lint": "npm run lint:eslint && npm run lint:solium",
"lint:eslint": "eslint ./test/",
"lint:solium": "solium -d ./contracts/",
"lint:solium:watch": "npm run lint:solium -- --watch",
"lint:mythril": "truffle compile && myth -x --truffle --max-depth 8 --outform markdown > mythril-report.md",
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:solium -- --fix"
},
"directories": {
"test": "test"
},
"files": [
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fitchain/fitchain-contracts.git"
},
"author": "Fitchain",
"license": "GNU GENERAL PUBLIC LICENSE V3",
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"bignumber.js": "^7.2.1",
"coveralls": "^3.0.2",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"ethereumjs-abi": "^0.6.5",
"ethers": "^4.0.7",
"ethjs": "^0.4.0",
"ethjs-abi": "^0.2.1",
"ethjs-provider-http": "^0.1.6",
"ethjs-rpc": "^0.2.0",
"har-validator": "^5.1.3",
"openzeppelin-solidity": "^2.0.0",
"solc": "^0.4.25",
"solidity-coverage": "^0.5.11",
"solium": "^1.1.8",
"truffle": "^5.0.0-user-level-mnemonic.0",
"truffle-config": "^1.0.4",
"truffle-expect": "0.0.4",
"truffle-hdwallet-provider": "^1.0.0-web3one.2",
"ursa": "^0.9.4",
"web3": "1.0.0-beta.36",
"web3-eth-abi": "^1.0.0-beta.36",
"web3-utils": "^1.0.0-beta.36",
"websocket": "^1.0.28"
},
"engines": {
"node": ">=8.11.1"
},
"dependencies": {
"har-validator": "^5.1.3",
"solc": "^0.4.25",
"websocket": "^1.0.28"
}
}