forked from BadVoice/zano-utils-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.11 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@badvoice/zano-utils-js",
"version": "0.1.2",
"repository": "[email protected]:BadVoice/Zano-utils-js.git",
"author": "BadVoice <https://t.me/GermanSmurov>",
"main": "dist/index.js",
"private": false,
"license": "MIT",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prebuild": "rimraf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand",
"build": "tsc -p ./tsconfig.build.json",
"preversion": "yarn test",
"version": "yarn build && git add -A dist",
"postversion": "git push && git push --tags",
"lint": "eslint \"{src,apps,lib,test}/**/*.ts\" --fix"
},
"dependencies": {
"axios": "^0.21.1",
"base58": "^2.0.1",
"big.js": "^6.1.1",
"js-sha3": "^0.9.3",
"keccak": "^3.0.3",
"rimraf": "^3.0.2",
"sodium-native": "^4.0.0",
"bn.js": "^4.12.0",
"buffer": "^6.0.3",
"elliptic": "^6.5.4"
},
"devDependencies": {
"@types/big.js": "^6",
"@types/elliptic": "^6.4.18",
"@types/jest": "^29.5.14",
"@types/keccak": "^3.0.5",
"@types/node": "^18",
"@types/sodium-native": "^2.3.5",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.32.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-import-newlines": "^1.1.7",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s",
"!dist/**",
"!coverage/**"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
},
"publishConfig": {
"access": "restricted"
}
}