-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.84 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.84 KB
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
{
"name": "@notestream/contract-artifacts",
"description": "Addresses of deployed AZTEC contracts on Ethereum mainnet and testnets",
"version": "0.2.0",
"author": "Tom French",
"bugs": {
"url": "https://github.com/TomAFrench/NoteStream/issues"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.27.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"lint-staged": "^10.2.11",
"shx": "^0.3.2",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=8.3"
},
"files": [
"/abis",
"/addresses",
"/lib"
],
"homepage": "https://github.com/TomAFrench/NoteStream#readme",
"keywords": [
"aztec",
"blockchain",
"confidentiality",
"cryptography",
"ethereum",
"privacy"
],
"license": "LGPL-3.0",
"main": "./lib",
"repository": {
"type": "git",
"url": "git+https://github.com/TomAFrench/NoteStream.git"
},
"scripts": {
"precommit": "lint-staged",
"commit": "git-cz",
"prepare": "yarn clean && yarn lint --fix",
"build": "yarn prepare && yarn build:types && yarn build:js",
"build:js": " babel src --out-dir lib --extensions '.ts,.tsx' --root-mode upward ./src",
"build:types": "tsc --emitDeclarationOnly",
"clean": "shx rm -rf ./lib",
"has:changed": "bash ../monorepo-scripts/ci/hasChanged.sh contract-artifacts",
"lint": "eslint --config .eslintrc.js --ext .ts . ",
"watch": "yarn build --watch"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}