-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.29 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
{
"name": "desico-token",
"version": "1.0.0",
"description": "Desico token",
"scripts": {
"test": "scripts/test.sh",
"coverage": "scripts/coverage.sh",
"rpc": "scripts/rpc.sh",
"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",
"console": "truffle console",
"deploy:rinkeby": "truffle migrate --reset --network=rinkeby",
"deploy:mainnet": "truffle migrate --reset --network=mainnet"
},
"repository": {
"type": "git",
"url": "https://github.com/Desico/desico-token.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"desico",
"desico.io",
"desico ico",
"desico sto"
],
"author": "Arturas Paleicikas <[email protected]>, Marius Lukošiūnas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Desico/desico-token/issues"
},
"homepage": "https://www.desico.io",
"eslintIgnore": [
"coverage",
"app"
],
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.0.0",
"coveralls": "^3.0.2",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-tx": "^1.3.4",
"ethereumjs-util": "^6.0.0",
"ethereumjs-wallet": "^0.6.0",
"ethjs-abi": "^0.2.1",
"express": "^4.16.3",
"ganache-cli": "6.2.5",
"mocha-lcov-reporter": "^1.3.0",
"solidity-coverage": "^0.5.11",
"solium": "^1.1.6",
"truffle": "^5.0.2",
"truffle-hdwallet-provider": "1.0.2",
"web3": "0.20.6",
"web3-provider-engine": "^14.0.5"
},
"dependencies": {
"bip39": "^2.5.0",
"crypto-js": "^3.1.9-1",
"csv-parse": "^4.3.1",
"dotenv": "^6.2.0",
"express": "^4.16.3",
"npm": "^6.7.0",
"openzeppelin-solidity": "^2.1.2",
"solc": "^0.5.3"
}
}