-
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) · 975 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 975 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": "@criptan/modulo-calculator",
"version": "1.0.0",
"description": "Simple utility to calculate the modulo of a Bitcoin hash",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/criptan/modulo-calculator.git",
"author": "Rubén Fernández Gordillo <7360184+rubfergor@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"build": "heft build --clean --production",
"postbuild": "heft clean",
"package": "pkg dist/index.js --out-path bin/",
"postinstall": "yarn build"
},
"dependencies": {
"bignumber.js": "^9.0.1",
"chalk": "^4.1.0",
"inquirer": "^8.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "~7.13.2",
"@rushstack/eslint-config": "~2.3.2",
"@rushstack/heft": "~0.25.1",
"@types/inquirer": "^7.3.1",
"@types/node": "14.14.35",
"eslint": "~7.22.0",
"pkg": "^4.5.1",
"typescript": "~4.2.3"
}
}