-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"private": true,
"name": "ctd-ico",
"version": "0.0.2",
"description": "Smart contracts for Cointed Token and Token Sale",
"main": "bin/app.js",
"scripts": {
"compile": "truffle compile",
"test": "truffle test",
"test-manual": "node test/helpers/staticHttpServer.js",
"deploy": "truffle migrate",
"build-contracts": "node node_modules/sol-merger/bin/sol-merger.js './contracts/*.sol' './build/flatten'"
},
"repository": {
"type": "git",
"url": " https://github.com/vkonst/ctd-token.git"
},
"keywords": [
"Cointed",
"ICO",
"token",
"smartcontract",
"ethereum",
"ERC20"
],
"author": "{name: Vadim Konstantinov, email:vadim.konstantinov@gmail.com}",
"license": "MIT",
"homepage": "https://github.com/vkonst/ctd-token.git",
"devDependencies": {
"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",
"bignumber.js": "^4.0.4",
"connect": "^3.6.5",
"reporter-file": "^1.0.0",
"serve-static": "^1.13.1",
"sol-merger": "^0.1.0",
"truffle-contract": "^3.0.0",
"web3": "^1.0.0-beta.22"
}
}