-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "verus-typescript-primitives",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": "https://github.com/VerusCoin/verus-typescript-primitives.git",
"license": "MIT",
"dependencies": {
"base64url": "3.0.1",
"bn.js": "5.2.1",
"bs58check": "2.0.0",
"create-hash": "1.2.0",
"bech32": "2.0.0"
},
"devDependencies": {
"@types/bn.js": "5.1.1",
"@types/bs58check": "2.1.0",
"@types/create-hash": "1.2.2",
"@types/jest": "28.1.6",
"@types/node": "18.7.22",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"eslint": "8.20.0",
"eslint-plugin-jest": "26.6.0",
"jest": "28.1.3",
"prettier": "2.7.1",
"ts-jest": "28.0.7",
"typescript": "4.7.4"
}
}