This repository has been archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"name": "@settlemint/certimint-validate",
"version": "0.0.0-development",
"description": "Tools for validating the CertiMint proofs without CertiMint",
"main": "dist/validate.js",
"types": "dist/validate.d.ts",
"scripts": {
"build": "tsc --declaration",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"pretest": "npm run tslint",
"test": "jest --forceExit --coverage --detectOpenHandles --verbose",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/settlemint/certimint-validate.git"
},
"keywords": [
"merkle tree",
"merkle proof",
"merkle",
"certimint",
"sealing",
"blockchain"
],
"author": "Roderik van der Veer <roderik@settlemint.com> (https://settlemint.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/settlemint/certimint-validate/issues"
},
"homepage": "https://github.com/settlemint/certimint-validate#readme",
"dependencies": {
"@ethersproject/providers": "^5.3.0",
"@settlemint/merkle-tools": "^1.0.7",
"axios": "^0.21.1",
"babel-cli": "^6.26.0",
"js-sha3": "^0.8.0",
"tsc-watch": "^4.4.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.1",
"concurrently": "^6.2.0",
"jest": "^27.0.4",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"semantic-release": "^17.4.3",
"travis-deploy-once": "^5.0.11",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0",
"typescript": "^4.3.2"
}
}