This repository has been archived by the owner on Aug 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
98 lines (98 loc) · 3.41 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@machinomy/contracts",
"version": "4.0.8",
"description": "Machinomy contracts managed by Truffle",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/machinomy/machinomy-contracts#readme",
"bugs": {
"url": "https://github.com/machinomy/machinomy-contracts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/machinomy/machinomy-contracts.git"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/"
],
"directories": {
"test": "test"
},
"config": {
"truffleTests": "test/**/*.test.js",
"wrappedArtifacts": "build/contracts/@(Test*|Bidirectional|Conditional|DistributeEth|DistributeToken|PublicRegistry|Lineup|TestToken|Multisig|TransferToken|TestContract|Proxy|ECRecovery).json"
},
"natspec": {
"whitelist": [
"Unidirectional"
]
},
"scripts": {
"prepublish": "yarn lint && yarn build --outDir dist/ && cp -r build/contracts dist/build",
"lint": "yarn lint:solidity && yarn lint:typescript",
"lint:solidity": "solium -d contracts/",
"lint:typescript": "tslint --format stylish --project .",
"build": "yarn support:wrap && tsc --project tsconfig.json",
"support:wrap": "yarn truffle:compile && yarn support:build && node support/wrap $npm_package_config_wrappedArtifacts --output $npm_package_config_wrappers_dir",
"support:build": "tsc --project support/tsconfig.json",
"truffle:test": "run-with-testrpc 'truffle test $npm_package_config_truffleTests'",
"truffle:compile": "truffle compile",
"truffle:migrate": "truffle migrate",
"test": "yarn build && yarn truffle:test",
"doc:natspec": "node support/natspec",
"coverage": "./node_modules/.bin/solidity-coverage"
},
"author": "Sergey Ukustov <sergey.ukustov@machinomy.com",
"contributors": [
"Alexandr Burtovoy <alexandr.burtovoy@machinomy.com>",
"David Wolever <david@wolever.net>"
],
"devDependencies": {
"@machinomy/types-ethereumjs-units": "^0.0.2",
"@machinomy/types-truffle": "^0.0.2",
"@machinomy/types-truffle-artifactor": "^0.0.1",
"@machinomy/types-truffle-compile": "^0.0.2",
"@machinomy/types-truffle-config": "^0.0.2",
"@machinomy/types-truffle-contract-sources": "^0.0.1",
"@machinomy/types-truffle-resolver": "^0.0.1",
"@machinomy/types-web3": "^0.0.7",
"@types/bignumber.js": "4.0.2",
"@types/chai": "^4.0.5",
"@types/chai-as-promised": "^7.1.0",
"@types/mkdirp": "^0.5.2",
"@types/node": "^8.0.28",
"@types/yargs": "^10.0.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"ethereumjs-abi": "https://github.com/ethereumjs/ethereumjs-abi",
"ethereumjs-units": "^0.2.0",
"handlebars": "^4.0.11",
"mkdirp": "^0.5.1",
"run-with-testrpc": "^0.2.1",
"solidity-coverage": "^0.4.9",
"solium": "^1.0.11",
"truffle": "^4.1.0",
"truffle-flattener": "^1.2.3",
"tslint": "^5.7.0",
"tslint-config-standard": "^6.0.1",
"types-ethereumjs-util": "https://github.com/machinomy/types-ethereumjs-util",
"typescript": "^2.8.3",
"yargs": "^10.1.1",
"zeppelin-solidity": "^1.6.0"
},
"dependencies": {
"bignumber.js": "4.1.0",
"buffer": "^5.0.7",
"ethereumjs-util": "^5.1.5",
"keccak": "^1.4.0",
"truffle-contract": "^3.0.0",
"utf8": "^3.0.0",
"web3": "^0.20.1"
},
"resolutions": {
"upath": "^1.0.5",
"sha3": "^1.2.1"
}
}