-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
114 lines (114 loc) · 3.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
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
{
"name": "@akashnetwork/akashjs",
"version": "0.10.1",
"description": "Akash Network JS SDK",
"repository": {
"url": "https://github.com/akash-network/akashjs"
},
"license": "Apache-2.0",
"author": "",
"main": "build/index.js",
"browser": {
"fs": false,
"os": false,
"path": false
},
"types": "build/",
"files": [
"umd/",
"build/**/*.d.ts",
"build/**/*.js"
],
"scripts": {
"build": "rimraf build && npm run build:tsc && npm run build:build",
"build:build": "webpack",
"build:production": "NODE_ENV=production npm run build:tsc && npm run build:build",
"build:tsc": "rimraf build && tsc",
"commitlint": "commitlint --edit",
"dev:watch": "tsc -- --watch",
"format": "prettier --write './**/*.{js,ts,json}' --config ./.prettierrc",
"lint": "eslint . --ext .js,.ts,.json -c .eslintrc.json",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build:production",
"setup-git-hooks": "husky",
"test": "npm run test:unit",
"test:cov": "jest --selectProjects unit functional --coverage",
"test:unit": "tap --ts tests/test_*.ts && jest --selectProjects unit",
"test:unit-snapshot": "tap --ts --snapshot tests/test_*.ts",
"test:unit:cov": "jest --selectProjects unit --coverage",
"test:unit:watch": "jest --selectProjects unit --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run test",
"npm run lint:fix",
"npm run format"
]
},
"dependencies": {
"@akashnetwork/akash-api": "^1.4.0",
"@cosmjs/amino": "^0.32.4",
"@cosmjs/launchpad": "^0.27.0",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@cosmjs/tendermint-rpc": "^0.32.4",
"asn1js": "^2.1.1",
"atob": "^2.1.2",
"axios": "^0.24.0",
"console-browserify": "^1.2.0",
"js-yaml": "^4.1.0",
"json-stable-stringify": "^1.0.2",
"jsrsasign": "^11.1.0",
"keytar": "^7.7.0",
"node-fetch": "2",
"pkijs": "^3.0.0",
"process": "^0.11.10",
"pvutils": "^1.0.17",
"simple-jsonrpc-js": "^1.2.0",
"sort-json": "^2.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@faker-js/faker": "^8.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.3",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/atob": "^2.1.2",
"@types/dot-object": "^2.1.6",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.5",
"@types/json-stable-stringify": "^1.0.34",
"@types/lodash": "^4.17.1",
"@types/node-fetch": "2",
"@types/sinon": "^10.0.11",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"commitlint": "^19.2.2",
"conventional-changelog-conventionalcommits": "^7.0.2",
"dot-object": "^2.1.5",
"husky": "^9.0.11",
"immutability-helper": "^3.1.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"node-polyfill-webpack-plugin": "^1.1.4",
"prettier": "^3.2.5",
"rimraf": "^5.0.1",
"sinon": "^13.0.1",
"tap": "^15.1.6",
"ts-jest": "^29.1.2",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"ts-proto": "^1.104.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.7.4",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2"
},
"engines": {
"node": ">18.0.0"
}
}