forked from cardstack/merkle-tree-payment-pool
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 2.34 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
{
"name": "@statesauce/merkle-payments",
"description": "This is an implementation of a Merkle Tree based payment pool in Solidity for ERC-20 tokens. This project was inspired by this Ethereum research post: https://ethresear.ch/t/pooled-payments-scaling-solution-for-one-to-many-transactions/590. A longer description around the motivations behind this project is available here: ***TODO: Add medium post URL here***. This project includes a payment pool smart contract that leverages Merkle Trees. Also included is a JS lib to create Merkle Trees, derive Merkle roots, and Merkle proofs that have metadata attached to the proofs that aid this smart contract in managing the payment pool.",
"version": "0.1.0",
"main": "lib/index.js",
"files": [
"build/",
"contracts/",
"migrations/",
"test/",
"src/"
],
"scripts": {
"build": "babel src/ --out-dir lib/",
"clean": "rimraf lib/",
"dev": "run-when-changed --watch 'src/**/*.js' --watch node_modules/**/*.js --exec 'npm run prepare'",
"prepare": "npm run clean && npm run build",
"pretest": "npm run prepare",
"prettier": "prettier --write \"src/**/*.js\"",
"test": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/statesauce/merkle-tree-payment-pool.git"
},
"keywords": [
"ethereum",
"solidity",
"merkle-tree",
"payment-pool"
],
"contributors": [
"Hassan Abdel-Rahman <[email protected]>",
"χ <[email protected]>",
"Seth Feibus <[email protected]>"
],
"homepage": "https://github.com/statesauce/merkle-tree-payment-pool#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/statesauce/merkle-tree-payment-pool/issues"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"ethereumjs-util": "^6.1.0",
"keccak256": "^1.0.0",
"lint-staged": "8.2.1",
"lodash": "^4.17.11",
"@statesauce/merkletreejs": "^0.1.7-ss-0.2",
"openzeppelin-solidity": "^2.3.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"truffle": "^5.0.25",
"web3": "^1.0.0-beta.55",
"web3-utils": "^1.0.0-beta.55"
},
"publishConfig": {
"access": "public"
}
}