-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "@aztec/huff",
"description": "Compiler for Huff, a DSL for low-level Ethereum smart contract programming",
"version": "0.0.3",
"author": "AZTEC",
"bugs": {
"url": "https://github.com/AztecProtocol/huff/issues"
},
"dependencies": {
"bn.js": "^4.11.8",
"ethereumjs-vm": "^2.5.1"
},
"devDependencies": {
"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",
"fixpack": "^2.3.1",
"mocha": "^6.0.2",
"sinon": "^7.2.3"
},
"engines": {
"node": ">=8.3"
},
"homepage": "https://github.com/AztecProtocol/huff/tree/master/#readme",
"keywords": [
"blockchain",
"ethereum",
"evm",
"huff",
"programming-language",
"smart-contracts"
],
"license": "LGPL-3.0",
"main": "./src",
"repository": {
"type": "git",
"url": "git+https://github.com/AztecProtocol/huff.git"
},
"scripts": {
"lint": "eslint --ignore-path ./.eslintignore .",
"test": "mocha ./src/ --bail --colors --exit --recursive --reporter spec --trace-warnings",
"exampletest": "mocha ./example/ --bail --colors --exit --recursive --reporter spec --trace-warnings"
}
}