forked from AztecProtocol/aztec-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
{
"name": "@aztec/contract-artifacts",
"description": "Smart contract compilation artifacts for the latest version of AZTEC.",
"version": "0.0.0-semantically-released",
"author": "AZTEC",
"bugs": {
"url": "https://github.com/AztecProtocol/AZTEC/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.16.0",
"shx": "^0.3.2"
},
"engines": {
"node": ">=8.3"
},
"files": [
"/artifacts",
"/lib"
],
"homepage": "https://github.com/AztecProtocol/AZTEC#readme",
"keywords": [
"aztec",
"blockchain",
"confidentiality",
"cryptography",
"ethereum",
"privacy",
"protocol"
],
"license": "LGPL-3.0",
"main": "./lib",
"repository": {
"type": "git",
"url": "git+https://github.com/AztecProtocol/AZTEC.git"
},
"scripts": {
"build:dev": "yarn clean && babel --copy-files --out-dir ./lib --root-mode upward ./src",
"build": "yarn clean && babel --copy-files --out-dir ./lib --root-mode upward ./src",
"build:prod": "yarn build",
"has:changed": "sh ../monorepo-scripts/ci/hasChanged.sh contract-artifacts",
"clean": "shx rm -rf ./lib",
"lint": "eslint --ignore-path ../../.eslintignore .",
"watch": "yarn build:dev --watch"
}
}