This repository was archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathpackage.json
86 lines (86 loc) · 2.99 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "aztec.js",
"description": "AZTEC client side library library",
"version": "0.0.0-semantically-released",
"author": "AZTEC",
"browser": "./dist/bundle.web.js",
"bugs": {
"url": "https://github.com/AztecProtocol/AZTEC/issues"
},
"dependencies": {
"@aztec/bn128": "0.0.0-semantically-released",
"@aztec/dev-utils": "0.0.0-semantically-released",
"@aztec/note-access": "0.0.0-semantically-released",
"@aztec/secp256k1": "0.0.0-semantically-released",
"@aztec/typed-data": "0.0.0-semantically-released",
"@babel/runtime": "^7.5.5",
"bn.js": "^4.11.8",
"cross-fetch": "^3.0.2",
"enumify": "^1.0.4",
"eth-sig-util": "^2.5.0",
"ethereumjs-abi": "^0.6.7",
"ethereumjs-util": "^6.1.0",
"web3-utils": "1.2.4"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.4.2",
"babel-loader": "^8.0.5",
"braintree-jsdoc-template": "^3.3.0",
"chai": "^4.2.0",
"electron": "^7.0.0",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.16.0",
"jsdoc": "^3.5.5",
"mocha": "^6.0.2",
"nyc": "^14.1.1",
"push-dir": "^0.4.1",
"shx": "^0.3.2",
"sinon": "^7.2.3",
"wasm-loader": "^1.3.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1"
},
"engines": {
"node": ">=8.3"
},
"files": [
"/dist"
],
"homepage": "https://github.com/AztecProtocol/AZTEC/tree/master/packages/aztec.js#readme",
"keywords": [
"aztec",
"blockchain",
"confidentiality",
"cryptography",
"ethereum",
"privacy",
"protocol"
],
"license": "LGPL-3.0",
"main": "./dist/bundle.node.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AztecProtocol/AZTEC.git"
},
"scripts": {
"build:dev": "webpack --config ./webpack.dev.js",
"build": "./node_modules/.bin/webpack --config ./webpack.dev.js;",
"build:docs": "jsdoc --configure ./.jsdoc.json",
"build:prod": "./node_modules/.bin/webpack --config ./webpack.prod.js;",
"clean": "shx rm -rf ./.nyc_output ./build ./coverage ./coverageEnv ./coverage.json ./dist ./docs || true",
"coverage": "nyc mocha ./test --bail --trace-warnings --exit --colors --recursive --reporter spec",
"lint": "eslint --ignore-path ../../.eslintignore .",
"publish:docs": "yarn build:docs && push-dir --allow-unclean --dir ./docs --branch gh-pages --remote docs --cleanup",
"test": "NODE_ENV=TEST LOCAL_DATABASE_PATH=$(pwd)/test/localSetupDatabase/ mocha --require @babel/polyfill --require @babel/register ./test --bail --colors --exit --recursive --reporter spec --timeout 0 --trace-warnings",
"has:changed": "bash ../monorepo-scripts/ci/hasChanged.sh aztec.js",
"watch": "yarn build:dev --watch"
}
}