forked from k06a/MultiToken
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.76 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "MultiToken",
"version": "1.0.0",
"description": "ERC20 token solidity smart contract allowing aggreagate ERC20 tokens",
"main": "y",
"directories": {
"test": "test"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-defaults": "^9.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^3.1.0",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^5.2.0",
"ethereumjs-wallet": "^0.6.2",
"ethjs-abi": "^0.2.1",
"ganache-cli": "^6.1.8",
"ganache-core": "^2.2.1",
"node-fetch": "^2.2.0",
"openzeppelin-solidity": "^1.12.0",
"solidity-coverage": "^0.5.11",
"solium": "^1.1.8",
"truffle": "^4.1.14",
"web3": "^1.0.0-beta.36",
"web3-provider-engine": "^14.0.6",
"web3-utils": "^1.0.0-beta.36"
},
"scripts": {
"test": "scripts/test.sh",
"coverage": "scripts/coverage.sh",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"rpc": "scripts/rpc.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/k06a/MultiToken.git"
},
"keywords": [
"solidity",
"truffle"
],
"author": "Anton Bukov",
"license": "MIT",
"bugs": {
"url": "https://github.com/k06a/MultiToken/issues"
},
"homepage": "https://github.com/k06a/MultiToken#readme"
}