-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.18 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
{
"name": "@galoymoney/proof-of-sats",
"version": "0.1.15",
"description": "Library to implement proof-of-liabilities.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest --no-cache --runInBand",
"build": "yarn install && rm -rf dist && tsc --sourceMap false --skipLibCheck true",
"code:check": "yarn tsc:check && yarn eslint:check && yarn prettier:check",
"eslint:check": "eslint \"{src,test}/**/*.ts\"",
"eslint:fix": "eslint \"{src,test}/**/*.ts\" --fix",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"tsc:check": "tsc --pretty --noEmit --skipLibCheck"
},
"keywords": [
"proof-of-liabilities",
"proof-of-reserves",
"proof-of-sats"
],
"author": "Vaibhav Dixit",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"typescript": "^4.2.2"
}
}