forked from axieinfinity/ronin-smart-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.8 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.8 KB
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
{
"name": "@axie/ronin-smart-contracts",
"version": "1.0.0",
"description": "Axie Infinity gateway smart contracts.",
"author": "Axie Infinity Engineering <engineering@axieinfinity.com>",
"scripts": {
"build": "yarn pre-build && tsc -b",
"build:source": "tsc -b",
"compile": "sol-compiler",
"clean": "rimraf artifacts dist src/abi src/bytecode src/contract",
"extract-abis": "bin/extract-abis.js",
"extract-bytecodes": "bin/extract-bytecodes.js",
"generate-contracts": "abi-gen --abis artifacts/**/*.json --template ./contract-templates/contract.handlebars --partials ./contract-templates/partials/**/*.handlebars --output src/contract",
"lint": "solium -d contracts && tslint -p .",
"pre-build": "npm-run-all compile --parallel extract-abis extract-bytecodes generate-contracts",
"test": "mocha --require source-map-support/register --require make-promises-safe \"dist/test/chain/*/*_test.js\" --timeout 100000 --bail --exit"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"dependencies": {
"@axie/base-contract": "^1.1.1",
"@axie/contract-library": "^1.1.1",
"@axie/web3-pool": "^1.0.0",
"bn.js": "^4.11.8",
"web3-core": "^1.0.0-beta.55",
"web3-utils": "^1.0.0-beta.55"
},
"devDependencies": {
"@0x/abi-gen": "^1.0.19",
"@0x/sol-compiler": "^4.4.1",
"@axie/tslint-config": "^1.0.0",
"@axie/contract-test-utils": "^1.0.0",
"@types/bn.js": "^4.11.2",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"make-promises-safe": "^4.0.0",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"solium": "^1.1.8",
"source-map-support": "^0.5.10",
"tslint": "^5.12.1",
"typescript": "^3.1.1",
"web3-eth-abi": "^1.0.0-beta.55"
}
}