forked from ava-labs/avalanchejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.43 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
{
"name": "avalanche",
"version": "3.15.5",
"description": "Avalanche Platform JS Library",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist/ && npx tsc -b && cp -r typings/src ./dist",
"prebundle": "yarn build",
"bundle": "webpack --mode production",
"lint": "eslint ./ --ext js,ts --fix",
"prepublish": "yarn build",
"release:prepare": "rm -rf ./dist ./node_modules && yarn install && yarn build && yarn bundle && yarn test && git status",
"test": "jest",
"test-watch": "jest --watch",
"docshtml": "npx typedoc --plugin typedoc-plugin-external-module-name --mode file src",
"docsmd": "rm -rf docsMD && yarn build && npx typedoc --readme none --plugin typedoc-plugin-markdown,typedoc-plugin-external-module-name --theme markdown --out docsMD src",
"docs": "yarn docshtml && yarn docsmd",
"prettier-src": "prettier --write ./src",
"prettier-examples": "prettier --write ./examples",
"prettier-tests": "prettier --write ./tests",
"prettier-web": "prettier --write ./web",
"prettier-mocks": "prettier --write ./__mocks__",
"prettier": "yarn prettier-src && yarn prettier-examples && yarn prettier-tests && yarn prettier-web && yarn prettier-mocks",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ava-labs/avalanchejs.git"
},
"keywords": [
"Avalanche",
"blockchain",
"defi"
],
"author": "Gabriel Cardona <[email protected]>",
"contributors": [
"Evan Richard <[email protected]>",
"Paul Kim <[email protected]>",
"Raj Ranjan <[email protected]>",
"Gergely Lovas <[email protected]>",
"Dhruba Basu <[email protected]>"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ava-labs/avalanchejs/issues"
},
"homepage": "https://github.com/ava-labs/avalanchejs#readme",
"devDependencies": {
"@types/bech32": "1.1.4",
"@types/bn.js": "5.1.1",
"@types/create-hash": "1.2.2",
"@types/hdkey": "2.0.1",
"@types/jest": "27.5.0",
"@types/node": "16.11.12",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"clean-webpack-plugin": "4.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-security": "1.5.0",
"git-revision-webpack-plugin": "5.0.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.1",
"jest": "26.6.3",
"jest-mock-axios": "4.5.0",
"prettier": "2.7.1",
"terser-webpack-plugin": "5.3.6",
"ts-jest": "26.5.6",
"ts-loader": "9.3.1",
"typedoc": "^0.18.0",
"typedoc-plugin-external-module-name": "^4.0.3",
"typedoc-plugin-markdown": "^2.4.0",
"typescript": "4.8.4",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"assert": "2.0.0",
"axios": "0.27.2",
"bech32": "2.0.0",
"bip39": "3.0.4",
"bn.js": "5.2.1",
"buffer": "6.0.3",
"create-hash": "1.2.0",
"crypto-browserify": "3.12.0",
"elliptic": "6.5.4",
"ethers": "5.7.2",
"hdkey": "2.0.1",
"isomorphic-ws": "5.0.0",
"randombytes": "^2.1.0",
"store2": "2.14.2",
"stream-browserify": "3.0.0",
"ws": "8.8.1",
"xss": "1.0.14"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": false,
"jsxBracketSameLine": false,
"trailingComma": "none"
}
}