-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.66 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
{
"name": "tickerregistry",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "run-s build build:test",
"build": "run-s compile:solidity generate:contract_wrappers compile:typescript",
"build:test": "run-s compile:test:solidity generate:test:contract_wrappers",
"compile:solidity": "sol-compiler",
"compile:test:solidity": "sol-compiler --artifacts-dir './test/test-artifacts' --contracts TestToken.sol",
"compile:typescript": "tsc",
"generate:contract_wrappers": "abi-gen --abis ${npm_package_config_abis} --output generated-wrappers --backend ethers",
"generate:test:contract_wrappers": "abi-gen --abis ${npm_package_config_testAbis} --output test/generated-wrappers --backend ethers",
"test": "ts-mocha -p test/tsconfig.json test/* -b"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@0x/abi-gen": "^5.0.2",
"@0x/abi-gen-templates": "^2.4.2",
"@0x/contracts-gen": "^2.0.2",
"@0x/sol-compiler": "^4.0.2",
"@0x/subproviders": "^6.0.2",
"@0x/utils": "^5.1.1",
"@0x/web3-wrapper": "^7.0.2",
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"ts-mocha": "^6.0.0",
"typescript": "^3.7.4",
"web3-provider-engine": "^15.0.4"
},
"config": {
"abis:comment": "This list is auto-generated by contracts-gen. Don't edit manually.",
"abis": "./artifacts/@(TickerRegistry).json",
"testAbis": "./test/test-artifacts/@(TestToken).json"
},
"dependencies": {
"@0x/base-contract": "^6.0.2",
"openzeppelin-solidity": "^2.4.0"
}
}