forked from hamdiallam/Solidity-RLP
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 820 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 820 Bytes
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
{
"name": "solidity-rlp",
"author": "Hamdi Allam <hamdi.allam97@gmail.com>",
"version": "1.0.0",
"description": "solidity rlp encoder/decoder",
"keywords": ["solidity", "rlp", "decoding", "smart contract", "ethereum"],
"main": "truffle.js",
"files": ["contracts", "test"],
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"console": "truffle console"
},
"repository": {
"type": "git",
"url": "https://github.com/hamdiallam/solidity-rlp.git"
},
"author": "Hamdi Allam",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/hamdiallam/solidity-rlp/issues"
},
"homepage": "https://github.com/hamdiallam/solidity-rlp#readme",
"devDependencies": {
"chai": "^4.1.2"
},
"dependencies": {
"rlp": "^2.0.0"
}
}