-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 963 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 963 Bytes
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
{
"name": "proofchain-library",
"version": "1.0.0",
"description": "",
"main": "./src/Proofchain.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write .",
"build": "rm -rf ./dist/ && tsc -p tsconfig.production.json",
"docs": "typedoc ./src/ ",
"docs:dev": "typedoc ./src/ --watch --logLevel Verbose",
"get-abi": "mkdir -p ./src/contract-build/ && cd ../truffle && npm run solc-build && cp ./build/solc/* ../library/src/contract-build/"
},
"author": "",
"license": "ISC",
"dependencies": {
"electron": "^12.0.1",
"keccak256": "^1.0.2",
"web3": "1.3.3",
"web3-core": "^1.3.4",
"web3-eth-contract": "^1.3.4"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"ganache-core": "^2.13.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"tsc": "^1.20150623.0",
"typedoc": "^0.20.33",
"typescript": "^4.2.3"
}
}