liquid-funding/package.json

58 lines
1.5 KiB
JSON
Raw Normal View History

2017-06-26 19:54:28 +02:00
{
"name": "liquidpledging",
2017-10-14 12:46:04 +02:00
"version": "0.0.10",
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": {
2017-10-08 07:07:00 -07:00
"test": "npm run build; mocha --harmony",
2017-10-07 14:39:03 -07:00
"sol-compile": "solcpiler -i './contracts/**/*.sol'",
"js-compile": "babel -d lib/ js/",
2017-10-08 07:05:04 -07:00
"build": "npm run sol-compile; npm run js-compile",
"prepublish": "npm run build"
2017-06-26 19:54:28 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/Giveth/liquidpledging.git"
},
"keywords": [
"liquid",
"pledging",
"tracking",
"smart",
"contract",
"solidity",
"donation"
],
"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",
2017-10-03 06:06:58 -07:00
"ethereumjs-testrpc": "git://github.com/perissology/testrpc.git#81216dbc",
"lerna": "^2.2.0",
2017-06-26 19:54:28 +02:00
"random-bytes": "^1.0.0",
2017-08-13 13:23:00 +02:00
"mocha": "^3.5.0",
2017-11-16 15:15:32 -08:00
"solcpiler": "0.0.7",
2017-10-23 14:25:06 -07:00
"web3": "1.0.0-beta.24"
2017-06-26 19:54:28 +02:00
},
"homepage": "https://github.com/Giveth/liquidpledging#readme",
"dependencies": {
2017-08-13 13:23:00 +02:00
"async": "^2.4.0",
2017-09-21 16:53:02 +02:00
"chai": "^4.1.0",
2017-11-16 15:15:32 -08:00
"eth-contract-class": "0.0.6",
"giveth-common-contracts": "^0.4.0"
2017-06-26 19:54:28 +02:00
}
}