-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.51 KB
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
{
"name": "outpost-subscriptions",
"version": "0.0.2",
"description": "decentralized subscription protocol",
"main": "js-sdk/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "truffle compile --all",
"migrate": "truffle migrate",
"pretest": "run-s pretest:*",
"pretest:create-dir": "mkdirp build/contracts",
"pretest:uni-periph": "cp node_modules/@uniswap/v2-periphery/build/* build/contracts/",
"pretest:sf": "cp node_modules/@superfluid-finance/ethereum-contracts/build/contracts/* build/contracts/",
"test": "truffle test",
"lint": "eslint test migrations"
},
"keywords": [
"truffle",
"superfluid",
"ethereum",
"subscriptions"
],
"author": "samhatem",
"license": "MIT",
"dependencies": {
"@superfluid-finance/ethereum-contracts": "^0.1.2-preview-20201014-fix5",
"ethers": "^5.0.19"
},
"devDependencies": {
"@decentral.ee/web3-helpers": "^0.3.4",
"@openzeppelin/contracts": "3.2.2-solc-0.7",
"@openzeppelin/test-helpers": "^0.5.9",
"@truffle/contract": "^4.2.30",
"@truffle/hdwallet-provider": "^1.2.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"dotenv": "^8.2.0",
"eslint": "^7.13.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"ganache-time-traveler": "^1.0.15",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"truffle": "^5.1.53"
}
}