-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "likecoin-contracts",
"version": "1.0.0",
"license": "GPL-3.0",
"description": "Ethereum Smart Contracts for LikeCoin",
"keywords": [
"LikeCoin",
"Ethereum",
"Blockchain"
],
"homepage": "https://like.community/",
"scripts": {
"server": "./testrpc.js",
"test": "truffle test",
"compile": "truffle compile",
"lint": "eslint ."
},
"contributors": [
"Chung Wu <[email protected]>",
"Michael Cheung <[email protected]>"
],
"repository": "likecoin/likecoin-contracts",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"bignumber.js": "^4.1.0",
"eth-lib": "^0.2.5",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-testrpc": "^6.0.3",
"ethereumjs-util": "^5.2.0",
"truffle": "^4.1.13",
"web3-eth-abi": "^1.0.0-beta.35",
"web3-utils": "^1.0.0-beta.35",
"zeppelin-solidity": "1.6.0"
},
"devDependencies": {
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0"
}
}