-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
105 lines (105 loc) · 2.89 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@rsksmart/rif-relay-client",
"version": "2.2.6",
"private": false,
"description": "This project contains all the client code for the rif relay system.",
"license": "MIT",
"author": "RIF Payments Team",
"contributors": [
{
"name": "Marcelo Ortelli",
"url": "https://github.com/mortelli"
},
{
"name": "Antonio Morrone",
"url": "https://github.com/antomor"
},
{
"name": "David Ugbero",
"url": "https://github.com/david-iov"
},
{
"name": "Christos Otarola",
"url": "https://github/ironFe93"
},
{
"name": "Juraj Piar",
"url": "https://github.com/jurajpiar"
},
{
"name": "Andrés Quijano",
"url": "https://github.com/AndresQuijano"
},
{
"name": "Francisco Tobar",
"url": "https://github.com/franciscotobar"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dist": "scripts/dist",
"format": "npx prettier \"{,test/**/}*.ts\" \"{,src/**/}*.ts\" !.gitignore --check --ignore-unknown",
"format:fix": "npm run format -- --write --ignore-unknown",
"lint": "npx eslint --cache \"{,test/**/}*.ts\" \"{,src/**/}*.ts\"",
"lint:fix": "npm run lint -- --fix",
"prepack": "npmignore --auto",
"prepare": "scripts/prepare",
"prepublishOnly": "scripts/prepublishOnly",
"tdd": "npm run test -- --watch --watch-files src,test",
"test": "npx mocha -r ts-node/register --extensions ts 'test/**/*.{test,spec}.ts'"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"package.json": "npx sort-package-json"
},
"dependencies": {
"bignumber.js": "^9.1.1",
"loglevel": "~1.8.0",
"npmignore": "^0.3.0",
"superagent": "^8.0.9"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@tsconfig/node16-strictest": "^1.0.4",
"@types/chai": "4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.0",
"@types/node": "^18.8.4",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.8",
"@types/superagent": "^4.1.16",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"chai": "4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "~8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^9.0.0",
"prettier": "^2.7.1",
"sinon": "^14.0.1",
"sinon-chai": "^3.7.0",
"ts-loader": "~9.4.1",
"ts-node": "^10.9.1",
"typescript": "4.8.2"
},
"peerDependencies": {
"@rsksmart/rif-relay-contracts": "2.1.1-beta.2",
"ethers": "^5.7.0"
},
"publishConfig": {
"ignore": [
"!dist",
"!build",
"src",
"test",
".github"
]
}
}