-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.96 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
{
"name": "witnet-erc2362-pricefeeds-aggregator",
"version": "1.0.0",
"description": "Exposes several Witnet-powered price feeds through a unified, standard ERC-2362 compliant interface",
"directories": {
"test": "test"
},
"scripts": {
"console": "npx truffle console",
"compile": "npx truffle compile",
"coverage": "solidity-coverage",
"flatten": " mkdir contracts/flattened/ 2>/dev/null; npx truffle-flattener contracts/*.sol > contracts/flattened/Flattened.sol",
"fmt": "npm run solium",
"fmt!": "npm run solium:fix",
"migrate": "npx truffle migrate",
"migrate-flattened": "npm run flatten && npx truffle migrate --config flattened-config.js",
"solium": "solium -d contracts",
"solium:fix": "solium -d contracts --fix",
"test": "npx truffle test",
"verify-flattened": "npx truffle run verify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stampery-labs/witnet-eip2362-pricefeeds.git"
},
"keywords": [
"decentralized",
"defi",
"ethereum",
"oracle",
"price feeds",
"smart contracts",
"stablecoin",
"witnet"
],
"author": "Witnet Devs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stampery-labs/witnet-eip2362-pricefeeds/issues"
},
"homepage": "https://github.com/stampery-labs/witnet-eip2362-pricefeeds#readme",
"dependencies": {
"adomedianizer": "git+https://github.com/tellor-io/ADOMedianizer.git"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-plugin-inline-script-import": "^0.0.4",
"babylon": "^6.18.0",
"node-eval": "^2.0.0",
"protocol-buffers": "^4.1.2",
"solidity-coverage": "^0.7.4",
"truffle": "^5.1.22",
"truffle-assertions": "^0.9.2",
"truffle-flattener": "git+https://github.com/witnet/truffle-flattener.git#single-experimental",
"truffle-plugin-verify": "^0.3.10"
}
}