-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.13 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
{
"private": false,
"name": "@thanpolas/crypto-utils",
"version": "0.4.1",
"main": "./src/",
"description": "Crypto utilities for tokens and formatting",
"homepage": "https://github.com/thanpolas/crypto-utils",
"bugs": "https://github.com/thanpolas/crypto-utils/issues",
"author": {
"name": "Thanos Polychronakis",
"email": "thanpolas@gmail.com"
},
"contributors": [
""
],
"repository": {
"type": "git",
"url": "https://github.com/thanpolas/crypto-utils"
},
"license": "ISC",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "npm run eslint && npm run jest",
"eslint": "eslint src test",
"jest": "TZ=utc jest --ci --coverage && codecov",
"release": "release-it --ci",
"release:minor": "release-it minor --ci",
"release:major": "release-it major --ci"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"./src/*.js",
"./src/**/*.js"
],
"coverageReporters": [
"json"
],
"roots": [
"./test/unit"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended/all"
],
"globalSetup": "./test/lib/global-setup.test.js",
"testTimeout": 10000
},
"dependencies": {
"decimal.js": "^10.3.1",
"invariant": "^2.2.4",
"jsbi": "^4.0.0",
"toformat": "^2.0.0"
},
"devDependencies": {
"@types/jest": "27.0.2",
"codecov": "^3.8.3",
"eslint": "8.0.1",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.2.2",
"eslint-plugin-jsdoc": "36.1.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-security": "1.4.0",
"expect": "27.3.1",
"jest": "27.3.1",
"jest-extended": "1.1.0",
"jest-junit": "13.0.0",
"prettier": "2.4.1",
"release-it": "14.11.6"
}
}