2017-06-26 19:54:28 +02:00
|
|
|
{
|
2017-12-19 16:56:26 -10:00
|
|
|
"name": "giveth-liquidpledging",
|
2018-06-29 08:07:06 -07:00
|
|
|
"version": "1.0.1",
|
2017-06-26 19:54:28 +02:00
|
|
|
"description": "Liquid Pledging Smart Contract",
|
|
|
|
"main": "index.js",
|
|
|
|
"directories": {
|
2017-10-07 14:39:03 -07:00
|
|
|
"lib": "lib",
|
2017-06-26 19:54:28 +02:00
|
|
|
"test": "test"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2018-06-15 17:27:47 -07:00
|
|
|
"test": "npm run build && mocha --harmony",
|
2018-06-16 18:50:58 -07:00
|
|
|
"compile:sol": "solcpiler --solc-version v0.4.18+commit.9cf6e910 -i './contracts/**/*.sol' ./node_modules/@aragon/os/contracts/{kernel/Kernel.sol,acl/ACL.sol,apps/AppProxyUpgradeable.sol} --output-sol-dir build/contracts",
|
2018-06-15 17:27:47 -07:00
|
|
|
"compile:js": "babel -d lib/ js/",
|
|
|
|
"compile": "npm run compile:sol && npm run compile:js",
|
|
|
|
"build": "npm run compile",
|
2017-12-02 20:29:40 -08:00
|
|
|
"prepublish": "npm run build"
|
2017-06-26 19:54:28 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/Giveth/liquidpledging.git"
|
|
|
|
},
|
2018-06-15 14:56:41 -07:00
|
|
|
"keywords": [
|
|
|
|
"liquid",
|
|
|
|
"pledging",
|
|
|
|
"tracking",
|
|
|
|
"smart",
|
|
|
|
"contract",
|
|
|
|
"solidity",
|
|
|
|
"donation"
|
|
|
|
],
|
2017-06-26 19:54:28 +02:00
|
|
|
"author": "Jordi Baylina",
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Giveth/liquidpledging/issues"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-10-07 14:39:03 -07:00
|
|
|
"babel-cli": "^6.26.0",
|
2017-08-13 13:23:00 +02:00
|
|
|
"babel-eslint": "^7.2.3",
|
2017-10-07 14:39:03 -07:00
|
|
|
"babel-preset-env": "^1.6.0",
|
2017-06-27 13:08:23 +02:00
|
|
|
"eslint-config-airbnb": "^15.0.1",
|
|
|
|
"eslint-plugin-import": "^2.6.0",
|
2017-07-11 04:01:00 -07:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.0.2",
|
2017-06-27 13:08:23 +02:00
|
|
|
"eslint-plugin-react": "^7.1.0",
|
2018-06-15 17:27:47 -07:00
|
|
|
"ganache-cli": "^6.1.3",
|
2017-10-03 06:06:58 -07:00
|
|
|
"lerna": "^2.2.0",
|
2017-08-13 13:23:00 +02:00
|
|
|
"mocha": "^3.5.0",
|
2018-02-10 15:14:52 +01:00
|
|
|
"random-bytes": "^1.0.0",
|
2018-06-29 08:07:06 -07:00
|
|
|
"solcpiler": "1.0.0-beta.8",
|
2018-06-15 14:56:41 -07:00
|
|
|
"web3": "1.0.0-beta.34"
|
2017-06-26 19:54:28 +02:00
|
|
|
},
|
|
|
|
"homepage": "https://github.com/Giveth/liquidpledging#readme",
|
|
|
|
"dependencies": {
|
2018-06-15 14:56:41 -07:00
|
|
|
"@aragon/os": "3.1.9",
|
2017-08-13 13:23:00 +02:00
|
|
|
"async": "^2.4.0",
|
2017-09-21 16:53:02 +02:00
|
|
|
"chai": "^4.1.0",
|
2018-06-16 14:09:12 -07:00
|
|
|
"eth-contract-class": "^0.0.12"
|
2017-06-26 19:54:28 +02:00
|
|
|
}
|
|
|
|
}
|