This repository has been archived by the owner on Apr 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.71 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
{
"name": "asset-token",
"version": "1.2.6",
"description": "ERC777 token standard, designed to represent a fungible asset with offchain interaction",
"keywords": [
"ethereum",
"erc777",
"solidity",
"smart",
"contract",
"fungible",
"currency",
"blockchain"
],
"repository": {
"type": "git",
"url": "https://github.com/clearmatics/asset-token.git"
},
"files": [
"build",
"contracts"
],
"homepage": "https://github.com/clearmatics/asset-token",
"author": "Clearmatics <[email protected]>",
"license": "LGPL-3.0",
"dependencies": {
"bn.js": "^4.11.0",
"command-line-args": "^5.1.1",
"openzeppelin-eth": "^2.1.3",
"openzeppelin-solidity": "^2.4.0",
"solhint": "2.0.0",
"truffle": "5.1.23",
"truffle-privatekey-provider": "^1.3.0",
"truffle-keystore-provider": "github:shirikatsu/truffle-keystore-provider",
"zos": "2.2.3",
"zos-lib": "2.2.3"
},
"scripts": {
"compile": "truffle compile",
"deploy_deps": "zos push --network development --deploy-dependencies --skip-compile",
"initialise": "npx zos create --network development AssetToken --init --args",
"deploy": "zos push --network development --deploy-dependencies --skip-compile; npx zos create --network development AssetToken --init --args",
"test": "truffle test",
"coverage": "truffle run coverage --file='test/Asset*.js'",
"lint": "solhint contracts/**/*.sol",
"docs": "rm -rf ./docs && npx soldocgen docs/ interfaces/"
},
"devDependencies": {
"chai": "^4.2.0",
"solidity-coverage": "0.7.1",
"openzeppelin-test-helpers": "^0.4.0",
"soldocgen": "0.0.3"
},
"engines": {
"node": "10.19.0",
"npm": "6.13.4"
}
}