-
Notifications
You must be signed in to change notification settings - Fork 164
/
package.json
80 lines (80 loc) · 2.6 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
{
"name": "avalanche",
"version": "2.4.3",
"description": "Avalanche Platform JS Library",
"main": "dist/index.js",
"browser": "dist/lib/avalanche.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "rm -rf dist/ && npx tsc -b && cp -r typings/src ./dist",
"prebundle": "npm run build",
"bundle": "webpack --mode production",
"lint": "eslint ./",
"prepublish": "npm run build",
"release:prepare": "rm -rf ./dist ./node_modules ./package-lock.json && npm install && npm run build && npm run bundle && npm test && git status",
"test": "jest",
"test-watch": "jest --watch",
"docshtml": "npx typedoc --plugin typedoc-plugin-external-module-name --mode file src",
"docsmd": "npx typedoc --readme none --plugin typedoc-plugin-markdown,typedoc-plugin-external-module-name --theme markdown --out docsMD src",
"docs": "npm run docshtml && npm run docsmd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ava-labs/avalanche.js.git"
},
"keywords": [],
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ava-labs/avalanche.js/issues"
},
"homepage": "https://github.com/ava-labs/avalanche.js#readme",
"devDependencies": {
"@types/bech32": "^1.1.2",
"@types/bn.js": "^4.11.6",
"@types/create-hash": "^1.2.2",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.53",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"acorn": "^7.4.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^2.5.1",
"expose-loader": "^0.7.5",
"git-revision-webpack-plugin": "^3.0.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.2.2",
"jest-mock-axios": "^3.2.0",
"terser-webpack-plugin": "^2.3.5",
"ts-jest": "^26.1.4",
"ts-loader": "^6.2.2",
"typedoc": "^0.18.0",
"typedoc-plugin-external-module-name": "^4.0.3",
"typedoc-plugin-markdown": "^2.4.0",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"engines": {
"node": ">=12.13.1",
"npm": ">=6.12.1"
},
"dependencies": {
"axios": "0.19.2",
"bech32": "1.1.4",
"bn.js": "4.11.8",
"buffer": "5.5.0",
"create-hash": "1.2.0",
"elliptic": "6.5.3",
"secp256k1": "4.0.2",
"store2": "2.11.0",
"web3-utils": "1.2.11",
"webcrypto": "0.1.1"
}
}