-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
61
{
"name": "game-contracts",
"version": "0.1.1",
"description": "the contract for lordless.io",
"files": [
"contracts",
"test"
],
"scripts": {
"test": "scripts/test.sh",
"cov": "SOLIDITY_COVERAGE=true node_modules/.bin/solidity-coverage",
"console": "truffle console",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"flattener": "truffle-flattener contracts/tavernNFT.sol > tavernNFT.flattener.sol"
},
"repository": {
"type": "git",
"url": "https://github.com/lordlessio/Tavern-NFT.git"
},
"keywords": [
"lordless",
"nft",
"solidity",
"ethereum",
"smart",
"contracts"
],
"author": "Eury Chen <https://github.com/netpi>",
"license": "MPL",
"dependencies": {
"fs-extra": "^7.0.0",
"solium": "^1.1.7",
"zeppelin-solidity": "^1.10.0"
},
"homepage": "https://github.com/lordlessio/game-contracts",
"devDependencies": {
"bignumber.js": "^4.1.0",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"coveralls": "^3.0.1",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-util": "^5.1.2",
"ethereumjs-wallet": "0.6.0",
"ganache-cli": "^6.1.8",
"solc": "^0.4.24",
"solidity-coverage": "^0.5.4",
"truffle": "4.1.11",
"truffle-flattener": "^1.2.5",
"truffle-hdwallet-provider": "^0.0.3",
"web3": "0.20.0"
}
}