-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.26 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@runningbeta/tolar",
"version": "0.0.1",
"description": "Smart contracts for Tolar ERC20 token and crowdsale",
"directories": {
"test": "test"
},
"files": [
"contracts",
"test"
],
"scripts": {
"compile": "truffle compile",
"test": "truffle test --network test",
"console": "truffle console",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"lint:all": "npm run lint && npm run lint:sol",
"lint:all:fix": "npm run lint:fix && npm run lint:sol:fix",
"coverage": "./node_modules/.bin/solidity-coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/runningbeta/tolar.git"
},
"keywords": [
"erc20",
"fungible",
"token",
"coin",
"currency",
"crowdsale",
"tge",
"ico",
"solidity",
"ethereum",
"smart",
"contracts",
"r8",
"runningbeta",
"weinorth",
"security",
"zeppelin"
],
"author": "Kristijan Rebernisak <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/runningbeta/tolar/issues"
},
"homepage": "https://github.com/runningbeta/tolar#readme",
"dependencies": {
"openzeppelin-solidity": "^1.12.0"
},
"devDependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"csvtojson": "^2.0.8",
"dotenv": "^6.0.0",
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"ethjs-abi": "^0.2.1",
"figlet": "^1.2.0",
"inquirer": "^6.2.0",
"lodash": "^4.17.10",
"minimist": "^1.2.0",
"moment": "^2.22.2",
"pify": "^4.0.0",
"progress": "^2.0.0",
"solidity-coverage": "^0.5.7",
"solium": "^1.1.8",
"truffle": "^4.1.14",
"truffle-hdwallet-provider": "0.0.6",
"web3": "^1.0.0-beta.35",
"web3-provider-engine": "^14.0.6",
"winston": "^3.1.0"
}
}