forked from Brahma-fi/brahma-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"name": "brahma-sdk",
"version": "1.0.3",
"description": "Brahma's Contract Development SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/Brahma-fi/brahma-sdk"
},
"keywords": [
"brahma.fi",
"sdk",
"solidity",
"contracts",
"hardhat",
"ethers",
"solc",
"evm",
"hevm",
"truffle",
"ganache"
],
"author": "pradeep-selva",
"license": "MIT",
"bugs": {
"url": "https://github.com/Brahma-fi/brahma-sdk/issues"
},
"homepage": "https://github.com/Brahma-fi/brahma-sdk#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/chai": "^4.3.1",
"@types/jest": "28.1.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"eslint": "8.17.0",
"eslint-plugin-jest": "26.5.3",
"ethers": "^5.6.8",
"hardhat": "2.9.1",
"jest": "28.1.0",
"prettier": "2.6.2",
"ts-jest": "28.0.4",
"typescript": "4.7.3"
},
"files": [
"dist/**/*"
]
}