-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "@tookey-io/web3-sdk",
"version": "0.1.0",
"description": "Tookey Web3 SDK",
"main": "lib/index.js",
"types": "lib/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",
"test": "jest --config jest.config.js",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tookey-io/web3-sdk.git"
},
"bugs": {
"url": "https://github.com/tookey-io/web3-sdk/issues"
},
"homepage": "https://github.com/tookey-io/web3-sdk#readme",
"devDependencies": {
"@types/jest": "29.2.4",
"@typescript-eslint/eslint-plugin": "5.46.0",
"@typescript-eslint/parser": "5.47.1",
"eslint": "8.30.0",
"eslint-plugin-jest": "27.1.7",
"jest": "29.3.1",
"prettier": "2.8.1",
"ts-jest": "29.0.3",
"typescript": "4.9.4"
},
"files": [
"lib/**/*"
],
"dependencies": {
"axios": "^1.2.3",
"bson": "^4.7.2",
"joi": "^17.7.0",
"mitt": "^3.0.0"
}
}