forked from ampleforth/market-oracle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "market-oracle",
"version": "0.0.1",
"description": "Ethereum smart contracts to aggregate exchange rates from various sources",
"keywords": [
"ethereum",
"smart-contracts",
"solidity"
],
"homepage": "https://github.com/ampleforth/market-oracle#readme",
"bugs": {
"url": "https://github.com/ampleforth/market-oracle/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ampleforth/market-oracle.git"
},
"license": "ISC",
"author": "dev-support@ampleforth.org",
"scripts": {
"coverage": "npx frg-coverage",
"precommit": "./scripts/pre-commit.sh",
"lint": "npx eslint ./migrations ./scripts ./test ./unit *.js --cache --fix && npx solhint ./contracts/*.sol",
"test": "./scripts/test.sh"
},
"pre-commit": {
"run": [
"precommit",
"lint"
]
},
"dependencies": {
"app-root-path": "~2.1.0",
"frg-ethereum-runners": "https://github.com/ampleforth/frg-ethereum-runners.git",
"js-yaml": "~3.12.0",
"openzeppelin-solidity": "~2.0.0",
"solhint": "^2.0.0",
"truffle": "4.1.14"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-bignumber": "^2.0.2",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-config-mocha": "0.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-mocha-only": "0.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-spellcheck": "0.0.10",
"eslint-plugin-standard": "^1.3.3",
"pre-commit": "^1.2.2",
"prettier": "^1.12.1",
"solidity-coverage": "0.5.8"
}
}