forked from Giveth/lpp-campaign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "lpp-campaign",
"version": "1.0.0",
"description": "Simple campaign plugin with reviewer for liquidpledging.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "npm run compile && mocha --harmony",
"compile:sol": "solcpiler --solc-version v0.4.18+commit.9cf6e910",
"compile:js": "babel --source-maps -d lib/ js/",
"lint": "solium --dir contracts",
"compile": "npm run compile:sol",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Giveth/lpp-campaign.git"
},
"keywords": [
"liquid",
"pledging",
"ethereum",
"solidity",
"campaign"
],
"author": "perissology",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Giveth/lpp-campaign/issues"
},
"homepage": "https://github.com/Giveth/lpp-campaign#readme",
"dependencies": {
"@aragon/os": "3.1.9",
"chai": "^4.1.2",
"giveth-liquidpledging": "1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.3.0",
"eth-contract-class": "0.0.12",
"ganache-cli": "^6.0.1",
"lerna": "^2.2.0",
"solcpiler": "1.0.0-beta.8",
"solium": "^1.0.9",
"web3": "1.0.0-beta.34"
}
}