This repository has been archived by the owner on Aug 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.79 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
{
"name": "@machinomy/plasmoid",
"version": "0.0.1",
"description": "Machinomy realization of Plasma",
"license": "AGPL-3.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/"
],
"directories": {
"test": "test"
},
"config": {
"truffleTests": "test/*.test.js",
"wrappedArtifacts": "build/contracts/@(Plasmoid|TestToken|StandardToken).json"
},
"scripts": {
"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 && wraptso $npm_package_config_wrappedArtifacts --output ./build/wrappers",
"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": "DEBUG=*,-babel DEBUG_DEPTH=10 run-with-testrpc 'yarn build && yarn truffle:migrate && jest'",
"coverage": "./node_modules/.bin/solidity-coverage"
},
"devDependencies": {
"@machinomy/types-ethereumjs-units": "^0.0.2",
"@machinomy/types-ethereumjs-util": "^0.0.12",
"@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-deployer": "^0.0.3",
"@machinomy/types-truffle-resolver": "^0.0.1",
"@machinomy/wraptso": "^0.0.12",
"@types/bignumber.js": "^5.0.0",
"@types/bn.js": "^4.11.1",
"@types/jest": "^23.3.1",
"@types/node": "^8.0.28",
"coveralls": "^3.0.0",
"ethereumjs-abi": "https://github.com/ethereumjs/ethereumjs-abi",
"handlebars": "^4.0.11",
"jest": "^23.5.0",
"mkdirp": "^0.5.1",
"run-with-testrpc": "^0.3.x",
"solidity-coverage": "^0.5.x",
"solium": "^1.1.8",
"truffle-flattener": "^1.2.3",
"truffle-jest": "https://github.com/ukstv/truffle-jest.git",
"ts-jest": "^23.1.4",
"tslint": "^5.7.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^3.0.3"
},
"dependencies": {
"@machinomy/hdwallet-provider": "^1.3.1",
"@machinomy/logger": "^0.2.0",
"@machinomy/types-truffle-contract": "^0.0.4",
"@machinomy/types-web3": "^0.0.7",
"bignumber.js": "^7.2.1",
"bn.js": "^4.11.8",
"buffer": "^5.0.7",
"console.table": "^0.10.0",
"eth-sig-util": "^2.0.2",
"ethereumjs-units": "^0.2.0",
"number-to-bn": "^1.7.0",
"openzeppelin-solidity": "^1.12.0",
"truffle": "^5.0.0-beta.1",
"truffle-contract": "^4.0.0-beta.1",
"types-bn": "^0.0.1",
"utf8": "^3.0.0",
"web3": "^0.20.x",
"yargs": "^12.0.2"
}
}