-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"name": "ministro-tool",
"version": "0.2.2",
"description": "JavaScript tool created for helping in process of testing solidity smart contracts.",
"main": "ministro-utils/index.js",
"scripts": {
"test": "scripts/test.sh",
"lint:test": "./node_modules/.bin/eslint ./test --no-ignore --ext .js --fix",
"lint:src": "./node_modules/.bin/eslint ./ministro-utils --no-ignore --ext .js --fix",
"lint": "npm run lint:test && npm run lint:src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luciditytech/ministro-contract.git"
},
"keywords": [
"solidity",
"smart contract",
"ethereum",
"test tool"
],
"author": "Dariusz Zacharczuk<dzacharczuk@lucidity.tech>",
"license": "MIT",
"bugs": {
"url": "https://github.com/luciditytech/ministro-tool/issues"
},
"homepage": "https://github.com/luciditytech/ministro-tool#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"bignumber.js": "^8.0.2",
"ethereumjs-util": "^6.0.0",
"pify": "^4.0.1",
"web3": "^1.0.0-beta.43",
"web3-utils": "^1.0.0-beta.43"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"bluebird": "^3.5.3",
"chai": "^4.2.0",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"ganache-cli": "^6.3.0",
"truffle": "^5.0.3"
}
}