-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "RCN",
"version": "2.3.3",
"description": "RCN is a global p2p lending protocol based on smart contracts and blockchain technology",
"files": [
"build",
"contracts",
"test"
],
"scripts": {
"lint:js": "node_modules/.bin/eslint .",
"lint:js:fix": "node_modules/.bin/eslint . --fix",
"lint:sol": "node_modules/.bin/solium -d .",
"lint:sol:fix": "node_modules/.bin/solium -d . --fix",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"test": "node_modules/.bin/truffle test",
"coverage": "node_modules/.bin/truffle run coverage"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/ripio/rcn-network"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts"
],
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/ripio/rcn-network"
},
"homepage": "https://ripiocredit.network",
"devDependencies": {
"bn-chai": "^1.0.1",
"bn.js": "^4.11.8",
"chai": "^4.2.0",
"coveralls": "^3.0.1",
"dotenv": "^4.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"ethjs-abi": "^0.2.1",
"ethlint": "^1.2.0",
"ganache-cli": "^6.4.3",
"macaron-cli": "^6.4.1",
"pre-commit": "^1.2.2",
"rp-solidity-coverage": "^0.5.13",
"solidity-coverage": "^0.7.16",
"solium": "^1.2.4",
"truffle": "^5.0.20",
"truffle-hdwallet-provider": "0.0.5",
"web3": "^1.3.6"
}
}