-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name": "@umbracash/umbra-js",
"version": "0.2.1",
"description": "Send and receive stealth payments",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build",
"src"
],
"scripts": {
"test": "yarn build && yarn hardhat test",
"coverage": "yarn clean && yarn build && nyc yarn hardhat test && sed -i'.bak' 's/SF:/SF:umbra-js\\//gI' ./coverage/lcov.info",
"lint": "eslint --ext .js,.ts ./",
"prettier": "prettier --write .",
"watch": "tsc --watch",
"build": "cp -r ../contracts-core/typechain ./src && tsc --build",
"clean": "rimraf build coverage .nyc_output cache",
"prepare": "yarn build",
"prepublishOnly": "yarn lint && yarn test",
"precommit": "lint-staged",
"docs": "typedoc src/"
},
"author": "ScopeLift <[email protected]>",
"license": "MIT",
"dependencies": {
"@noble/secp256k1": "^1.7.1",
"@unstoppabledomains/resolution": "8.5.0",
"ethers": "5.7.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@umbra/contracts-core": "^0.0.2",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.20.2",
"hardhat": "2.17.1",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typedoc": "^0.20.35",
"typescript": "^4.0.3"
},
"keywords": [
"ethereum",
"privacy",
"payments",
"web3"
],
"repository": {
"type": "git",
"url": "https://github.com/ScopeLift/umbra.git"
},
"volta": {
"extends": "../package.json"
}
}