-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "token-sale-smart-contract",
"version": "1.0.0",
"description": "Token Sale smart contracts with Tiers, Soft Cap, Hard Cap, KYC Whitelist & Blacklist ",
"scripts": {
"deploy": "scripts/truffle-migrate",
"test": "node_modules/.bin/truffle test",
"flat": "scripts/contract-flattener",
"compile": "scripts/truffle-compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vulpemventures/token-sale-smart-contract.git"
},
"engines": {
"node": ">=7.6"
},
"keywords": [
"TokenSale",
"ICO",
"Solidity",
"KYC",
"Whitelist",
"Blacklist",
"vulpem.com"
],
"author": "Vulpem Ventures Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/vulpemventures/token-sale-smart-contract/issues"
},
"homepage": "https://github.com/vulpemventures/token-sale-smart-contract#readme",
"dependencies": {
"openzeppelin-solidity": "^1.9.0"
},
"devDependencies": {
"chai": "^4.1.2",
"web3": "^1.0.0-beta.34",
"truffle": "^4.1.6",
"chai-bignumber": "^2.0.2",
"chai-as-promised": "^7.1.1",
"truffle-flattener": "^1.2.5",
"truffle-hdwallet-provider": "0.0.3"
}
}