This repository has been archived by the owner on Dec 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
59 lines (59 loc) · 1.99 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
{
"name": "monoplasma",
"version": "0.2.0",
"description": "Unidirectional payment sidechain with monotonically increasing balances (no in-chain transfers)",
"author": "Streamr Network AG",
"license": "AGPL-3.0",
"repository": "streamr-dev/monoplasma",
"main": "deploy.js",
"scripts": {
"start": "npm run clean-demo && ./start_operator.js",
"lint": "eslint src test",
"build": "npm run clean && truffle compile && ./flatten && ./copy-abi-to-ui.js && npm run build-demo",
"build-demo": "cd demo && npm i && npm run build",
"test-js": "mocha test/mocha --exit",
"test-e2e": "mocha test/e2e --exit",
"test-contracts": "truffle test test/truffle/*",
"coverage": "truffle run coverage --file=test/truffle/*.js",
"test": "npm run clean && truffle compile && npm run test-js && npm run test-contracts && npm run test-e2e",
"clean": "rm -f build/contracts/* && rm -f build/flattened/*",
"clean-demo": "rm -rf demo/public/data/*",
"prepack": "./flatten && jq '{contractName,updatedAt,schemaVersion} + (.metadata|fromjson|del(.output)) + {userdoc,bytecode,abi}' build/contracts/Monoplasma.json > build/Monoplasma.json"
},
"devDependencies": {
"eslint": "6.8.0",
"mocha": "7.0.0",
"node-fetch": "2.6.0",
"sinon": "8.1.1",
"solidity-coverage": "0.7.1",
"truffle-flattener": "1.4.2",
"bn.js": "5.1.1",
"body-parser": "1.19.0",
"cors": "2.8.5",
"ethers": "4.0.46",
"exit-hook": "2.2.0",
"express": "4.17.1",
"fs-extra": "8.1.0",
"ganache-cli": "6.8.2",
"ganache-core": "2.9.2",
"mz": "2.7.0",
"prettyjson": "1.2.1",
"promise-events": "0.1.6",
"source-map-support": "0.5.16",
"solc": "0.6.1",
"truffle": "5.1.9",
"truffle-resolver": "5.0.16",
"web3": "1.2.4",
"websocket": "1.0.31",
"zeromq": "5.2.0"
},
"dependencies": {
"openzeppelin-solidity": "2.4.0"
},
"files": [
"contracts",
"strings",
"build/flattened/Monoplasma.sol",
"build/Monoplasma.json"
]
}