liquid-funding/package.json

52 lines
1.6 KiB
JSON
Raw Normal View History

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