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
/
package.json
61 lines (61 loc) · 2.09 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
{
"name": "@settlemint/merkle-tools",
"version": "0.0.0-development",
"description": "Tools for creating merkle trees, generating merkle proofs, and verification of merkle proofs.",
"main": "dist/merkletools.js",
"types": "dist/merkletools.d.ts",
"scripts": {
"build-ts": "tsc --declaration",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"pretest": "npm run tslint",
"start": "npm run serve",
"build": "npm run build-ts",
"serve": "node dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest --detectOpenHandles --forceExit --coverage --verbose",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/settlemint/merkle-tools.git"
},
"keywords": [
"merkle tree",
"merkle proof",
"merkle",
"chainpoint"
],
"author": "Jason Bukowski <jason@tierion.com> (https://tierion.com)",
"contributors": [
"Roderik van der Veer <roderik@settlemint.com> (https://settlemint.com)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/settlemint/merkle-tools/issues"
},
"homepage": "https://github.com/settlemint/merkle-tools#readme",
"dependencies": {
"js-sha3": "^0.8.0"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/node": "^10.12.10",
"concurrently": "^4.1.0",
"jest": "^23.6.0",
"nodemon": "^1.18.7",
"prettier": "^1.15.2",
"semantic-release": "^15.12.2",
"travis-deploy-once": "^5.0.9",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.1.6"
}
}