This repository has been archived by the owner on Apr 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
61 lines (61 loc) · 1.49 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
59
60
61
{
"name": "erc820",
"version": "0.0.25",
"description": "ERC820 Pseudo-introspection Registry Contract",
"main": "index.js",
"files": [
"artifacts",
"build",
"js",
"contracts"
],
"directories": {
"test": "test"
},
"scripts": {
"lint:sol": "npx solium --reporter pretty --dir contracts",
"build:sol": "solcpiler -i './contracts/*.sol' --solc-version=\"v0.4.24+commit.e67f0147\" --output-artifacts-dir artifacts --insert-file-names imports",
"build": "npm run clean && npm run build:sol",
"test": "npm run build && mocha --harmony",
"clean": "rm -rf build artifacts",
"info": "node js/info.js",
"prepack": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/jbaylina/ERC820.git"
},
"keywords": [
"solidity",
"pseudo-introspaection",
"ERC672",
"ERC820",
"ERC777",
"smart",
"contract",
"reverseENS",
"ethereum"
],
"author": "Jordi Baylina",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/jbaylina/ERC820/issues"
},
"homepage": "https://eips.ethereum.org/EIPS/eip-820",
"dependencies": {
"eth-contract-class": "0.0.12",
"ethereumjs-tx": "1.3.3",
"ethereumjs-util": "5.1.3",
"globby": "^8.0.1",
"web3": "1.0.0-beta.36"
},
"devDependencies": {
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"ganache-cli": "6.1.8",
"mocha": "4.1.0",
"solc": "0.4.24",
"solcpiler": "1.0.0-beta.9",
"solium": "^1.1.8"
}
}