-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
69 lines (69 loc) · 1.7 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
{
"name": "@synthetixio/optimism-networks",
"publishConfig": {
"access": "public"
},
"version": "2.74.6",
"description": "Javascript library for handling networks on Optimism Layer 2",
"source": "./src/index.ts",
"main": "./build/index.js",
"module": "./build/index.js",
"browser": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build",
"src"
],
"scripts": {
"build": "tsc --build --verbose",
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{js,ts,tsx}'",
"test": "jest --forceExit --coverage --no-cache"
},
"repository": {
"type": "git",
"url": "https://github.com/Synthetixio/js-monorepo"
},
"author": "Synthetix",
"license": "MIT",
"bugs": {
"url": "https://github.com/Synthetixio/js-monorepo/issues"
},
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@metamask/providers": "^10.2.1"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"eslint": "^8.34.0",
"jest": "^29.7.0",
"typescript": "^4.9.5"
},
"browserslist": [
"last 1 Chrome version",
"last 1 Firefox version",
"last 1 Edge version",
"last 1 Opera version"
],
"jest": {
"testMatch": [
"<rootDir>/**/*.test.{js,jsx,ts,tsx}"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/src/**/*.d.{js,jsx,ts,tsx}"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
}
}