-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.44 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
{
"name": "@nexusmutual/sdk",
"version": "0.7.0",
"description": "Nexus Mutual SDK",
"scripts": {
"build": "node scripts/build.js",
"lint": "eslint --quiet --max-warnings 0 .",
"lint:fix": "npm run lint -- --fix --quiet",
"format": "prettier --loglevel silent --check 'src/**/*.{js,jsx,ts,tsx}'",
"format:fix": "prettier --loglevel silent --write 'src/**/*.{js,jsx,ts,tsx}'",
"test": "jest",
"test:watch": "jest --watch",
"ts:check": "npm run ts:check-types && npm run ts:circular-check",
"ts:check-types": "tsc --noEmit",
"ts:circular-check": "dpdm --no-output --no-tree --no-warning --exit-code circular:1 -T ./src/**/*.ts",
"list:products": "node scripts/list-products.js",
"list:product-types": "node scripts/list-product-types.js",
"publish:next": "npm publish --access public --tag next",
"prepare": "is-ci || husky"
},
"typings": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NexusMutual/sdk.git"
},
"author": "nexusmutual",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/NexusMutual/sdk/issues"
},
"homepage": "https://github.com/NexusMutual/sdk#readme",
"engines": {
"node": ">=11.14.0"
},
"dependencies": {
"@nexusmutual/deployments": "^2.11.0",
"axios": "^1.6.8",
"multiformats": "^8.0.6",
"svgo": "^3.0.2"
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"dotenv": "^16.0.3",
"dpdm": "3.11.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"ethers": "^5.7.2",
"husky": "^9.1.6",
"is-ci": "3.0.1",
"jest": "^29.7.0",
"jest-mock-axios": "^4.7.3",
"node-fetch": "^2.6.9",
"prettier": "^2.8.7",
"semver": "^7.4.0",
"ts-jest": "^29.1.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"viem": "^1.16.6"
}
}