-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "erc721x",
"version": "1.0.1",
"description": "ERC721X Solidity contracts",
"main": "index.js",
"scripts": {
"test": "rm -rf build && bash scripts/test.sh",
"test:gas": "GAS_REPORTER=true npm test",
"compile": "truffle compile",
"lint": "solium --dir ./contracts",
"deploy:ganache": "rm -rf build && truffle deploy --reset --network ganache",
"deploy:rinkeby": "rm -rf build && truffle deploy --reset --network rinkeby"
},
"keywords": [
"blockchain"
],
"author": {
"name": "Loom Network",
"url": "https://loomx.io"
},
"license": "BSD-3-Clause",
"devDependencies": {
"bignumber.js": "^7.2.1",
"bn-chai": "^1.0.1",
"bn.js": "^4.11.8",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"eth-gas-reporter": "^0.1.10",
"ethereumjs-util": "^5.2.0",
"ganache-cli": "^6.1.8",
"openzeppelin-solidity": "^2.2.0",
"truffle": "^5.0.9",
"truffle-hdwallet-provider": "git+https://github.com/loomnetwork/truffle-hdwallet-provider.git#web3-one",
"web3-utils": "1.0.0-beta.34"
},
"dependencies": {
"solium": "^1.1.8"
}
}