This repository has been archived by the owner on Jul 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
59 lines (59 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
59
{
"name": "huffc",
"description": "A low level programming language for the Ethereum Virtual Machine",
"version": "0.0.25",
"author": "JetJadeja",
"bin": {
"huffc": "bin/huffc"
},
"dependencies": {
"@ethersproject/abi": "^5.6.3",
"bn.js": "^4.11.8",
"commander": "^8.1.0",
"ganache": "^7.2.0",
"ts-node": "^10.1.0",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/node": "^18.0.0",
"chai": "^4.2.0",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^6.0.2",
"prettier": "2.3.2",
"sinon": "^7.2.3"
},
"engines": {
"node": ">=8.3"
},
"homepage": "https://github.com/JetJadeja/huff",
"keywords": [
"blockchain",
"ethereum",
"evm",
"huff",
"programming-language",
"smart-contracts"
],
"license": "LGPL-3.0",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/JetJadeja/huff.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint --ignore-path ./.eslintignore .",
"test": "mocha ./src/ --bail --colors --exit --recursive --reporter spec --trace-warnings",
"exampletest": "mocha ./examples/erc20 --bail --colors --exit --recursive --reporter spec --trace-warnings"
},
"bugs": {
"url": "https://github.com/JetJadeja/huff/issues"
},
"directories": {
"example": "example",
"test": "tests"
}
}