This repository has been archived by the owner on Nov 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 1.59 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
{
"name": "@0xcert/ethereum-xcert",
"version": "1.7.0",
"description": "Xcert token implementation for the Ethereum blockchain.",
"main": "truffle.js",
"directories": {
"contracts": "contracts",
"migrations": "migrations",
"test": "test"
},
"scripts": {
"clean": "rm -Rf ./build",
"compile": "truffle compile",
"console": "truffle console",
"flatten": "mkdir -p build && truffle-flattener contracts/**/*.sol >> build/bundle.sol",
"lint": "eslint './**/*.js?(x)'",
"migrate": "truffle migrate",
"networks": "truffle networks",
"postpublish": "npm run clean",
"prepublish": "npm run compile",
"test": "npm run clean && truffle test"
},
"author": "0xcert",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/0xcert/ethereum-xcert.git"
},
"bugs": {
"url": "https://github.com/0xcert/ethereum-xcert/issues"
},
"homepage": "https://github.com/0xcert/ethereum-xcert#readme",
"keywords": [
"ethereum",
"blockchain",
"eth",
"contract",
"contracts",
"smart",
"smart-contract",
"smart-contracts",
"token",
"tokens",
"nft",
"nfts",
"non-fungible",
"non-fungibles",
"eip",
"erc",
"erc721",
"erc-721",
"deed",
"standard",
"xcert",
"certified",
"certification",
"certificate"
],
"devDependencies": {
"eslint": "^4.19.1",
"ethjs-util": "^0.1.4",
"truffle": "^4.1.11",
"truffle-flattener": "^1.2.5",
"web3-utils": "^1.0.0-beta.34"
},
"dependencies": {
"@0xcert/ethereum-erc721": "^1.10.0"
}
}