This repository was archived by the owner on Jan 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.4 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
{
"name": "@0xcert/ethereum",
"version": "0.1.0",
"description": "0xcert protocol implementation for Ethereum blockchain.",
"main": "truffle.js",
"directories": {
"contracts": "contracts",
"migrations": "migrations",
"test": "test"
},
"scripts": {
"flatten:xct": "truffle-flattener contracts/tokens/Xct.sol >> build/Xct.bundle.sol",
"flatten:xcert": "truffle-flattener contracts/tokens/Xct.sol >> build/Xcert.bundle.sol",
"flatten": "npm run flatten:xct && npm run flatten:xcert",
"test": "truffle test",
"setup:migrate": "truffle migrate --network dev",
"setup:ganache": "ganache-cli",
"setup:env": "npm-run-all -p setup:ganache setup:migrate"
},
"author": "0xcert",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/0xcert/ethereum.git"
},
"bugs": {
"url": "https://github.com/0xcert/ethereum/issues"
},
"homepage": "https://github.com/0xcert/ethereum#readme",
"keywords": [
"0xcert",
"protocol",
"ethereum",
"eth",
"contracts",
"contract",
"smart",
"smart-contracts",
"smart-contract",
"tokens",
"token",
"xct",
"xcert",
"non-fungible",
"erc721"
],
"devDependencies": {
"ethjs-util": "^0.1.4",
"ganache-cli": "^6.1.0",
"npm-run-all": "^4.1.2",
"truffle": "^4.1.7",
"truffle-flattener": "1.2.0",
"web3-utils": "^1.0.0-beta.30"
}
}