This repository has been archived by the owner on Apr 26, 2023. It is now read-only.
forked from 0xjac/ERC1820
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.46 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "erc1820",
"version": "0.0.2",
"description": "ERC1820 - Pseudo-introspection using a registry contract",
"main": "index.js",
"files": [
"artifacts",
"js",
"contracts"
],
"directories": {
"test": "test"
},
"scripts": {
"lint:sol": "npx solium --reporter pretty --dir contracts",
"build:sol": "solc --overwrite --optimize --optimize-runs 200 --metadata-literal --output-dir ./artifacts --combined-json abi,asm,bin,devdoc,hashes,interface,metadata,opcodes,srcmap,userdoc ./contracts/*.sol",
"build": "npm run clean && npm run build:sol",
"test": "npm run build && mocha --harmony",
"clean": "rm -rf artifacts",
"info": "node js/info.js",
"prepack": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/0xjac/ERC1820.git"
},
"keywords": [
"solidity",
"pseudo-introspaection",
"ERC672",
"ERC820",
"ERC820a",
"ERC1820",
"ERC777",
"smart",
"contract",
"reverseENS",
"ethereum"
],
"author": "Jordi Baylina, Jacques Dafflon",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/0xjac/ERC1820/issues"
},
"homepage": "https://eips.ethereum.org/EIPS/eip-820",
"dependencies": {
"ethereumjs-tx": "1.3.7",
"ethereumjs-util": "6.1.0",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"ethlint": "^1.2.3",
"ganache-cli": "6.3.0",
"mocha": "^5.2.0"
}
}