forked from Consensys/infura-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.17 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@infura/sdk",
"version": "2.4.1",
"description": "Infura SDK: easily manage, interact with and read smart contract on Mainnet, testnet and local",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest",
"test:e2e": "jest e2e/* --config ./e2e/config/jest.config.json --runInBand ",
"test:integration": "jest --config ./integration-test/config/jest-integration.json --forceExit --runInBand --no-cache",
"test:coverage": "jest --coverage",
"build": "rm -rf dist/ && tsc",
"prepublishOnly": "npm run build",
"format": "prettier --write '{src,integration-test}/**/*.{ts,js,json}'",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"fetchAPITypes": "npx openapi-typescript https://docs.api.infura.io/nft/swagger.json --output src/services/nft-api.ts",
"postfetchAPITypes": "sh scripts/PascalCase.sh",
"prepare": "husky install",
"generate:changelog": "npx auto-changelog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ConsenSys/infura-sdk.git"
},
"keywords": [
"infura",
"sdk",
"ethereum",
"evm",
"blockchain",
"smart contracts",
"dapps",
"solidity",
"nft",
"web3",
"tooling"
],
"files": [
"dist/",
"src/",
"usage.ts",
"LICENSE",
"README.md"
],
"author": "Consensys Inc",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^7.4.0",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.1.0",
"ganache": "^7.3.2",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-html-reporter": "^3.7.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"dependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/parser": "^5.49.0",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"ethers": "^5.6.9",
"form-data": "^4.0.0",
"jest-junit": "^14.0.1",
"jest-sonar-reporter": "^2.0.0",
"joi": "^17.7.0",
"path": "^0.12.7",
"semantic-release": "^21.0.1"
},
"overrides": {
"eslint-config-airbnb-base": {
"eslint-plugin-import": {
"debug": "^3.1.0"
}
},
"eslint-config-airbnb-typescript": {
"eslint-plugin-import": {
"debug": "^3.1.0"
}
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,css,md}": "prettier --write"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.test\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.ts"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"roots": [
"<rootDir>/test/"
],
"moduleNameMapper": {
"^@shared/shared(|/.*)$": "<rootDir>/libs/shared/src/$1"
}
}
}