forked from AztecProtocol/aztec-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "@aztec/huff",
"version": "0.1.0",
"author": "AZTEC",
"description": "Compiler for Huff, a DSL for low-level Ethereum smart contract programming",
"license": "LGPL-3.0",
"main": "./src",
"homepage": "https://github.com/AztecProtocol/AZTEC#readme",
"keywords": [
"huff",
"ethereum",
"evm",
"smart",
"contracts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AztecProtocol/AZTEC.git"
},
"bugs": {
"url": "https://github.com/AztecProtocol/AZTEC/issues"
},
"dependencies": {
"bn.js": "^4.11.8",
"ethereumjs-vm": "^2.5.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^5.2.0",
"sinon": "^7.2.3"
},
"scripts": {
"lint": "./node_modules/.bin/eslint --ignore-path ../../.eslintignore .",
"test": "./node_modules/.bin/mocha ./src/ --trace-warnings --exit --colors --recursive --reporter spec"
}
}