-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 956 Bytes
/
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
{
"name": "node-provenance-hash",
"description": "A cli tool to use when you need to create a provenance HASH for an HFT project.Can also be used to prove that folder contents have not been changed since creation of the hash",
"license": "MIT",
"version": "0.0.5",
"author": {
"email": "[email protected]",
"name": "Tino Tokic"
},
"scripts": {
"build": "yarn tsc src/main.ts --outDir dist --declaration",
"hash": "ts-node app.ts",
"publish": "yarn build && npm publish"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"main": "dist/main",
"typings": "dist/main",
"files": [
"dist/main.js",
"dist/main.d.ts"
]
}