This repository has been archived by the owner on Feb 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.75 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
{
"name": "casino",
"version": "1.0.0",
"description": "Casino smart contracts",
"scripts": {
"test": "USE_GANACHE=true ./node_modules/.bin/truffle test --network ganache",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint . --fix",
"lint:sol": "./node_modules/.bin/solium -d .",
"lint:sol:fix": "./node_modules/.bin/solium -d . --fix",
"lint:all": "npm run lint && npm run lint:sol",
"lint:all:fix": "npm run lint:fix && npm run lint:sol:fix",
"console": "./node_modules/.bin/truffle console",
"coverage": "SOLIDITY_COVERAGE=true ./node_modules/.bin/solidity-coverage",
"compile": "./node_modules/.bin/truffle compile"
},
"keywords": [
"solidity",
"ethereum",
"evm",
"smart",
"contracts"
],
"author": "Dmitry <dimboknv@gmail.com> <support@333eth.io> (https://333eth.io/)",
"license": "MIT",
"devDependencies": {
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"ethereumjs-util": "^6.0.0",
"ethjs-abi": "^0.2.1",
"ganache-core": "^2.5.3",
"mocha-lcov-reporter": "^1.3.0",
"pify": "^4.0.1",
"solidity-coverage": "https://github.com:rotcivegaf/solidity-coverage.git#5875f5b7bc74d447f3312c9c0e9fc7814b482477",
"solium": "^1.2.4",
"truffle": "^5.0.2",
"truffle-contract": "^3.0.7"
},
"dependencies": {
"elliptic": "^6.4.1",
"ethereumjs-wallet": "^0.6.3",
"js-sha3": "^0.8.0"
}
}