forked from ava-labs/avalanchejs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
125 lines (125 loc) · 3.84 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
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@c4tplatform/caminojs",
"version": "1.3.0",
"description": "Camino Platform JS Library",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && npx tsc -b tsconfig_build.json",
"bundle": "webpack --mode production",
"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": "rm -rf docsMD && yarn build && npx typedoc --readme none --theme markdown --out docs",
"lint": "eslint ./ --ext js,ts --fix",
"prebundle": "yarn build",
"prepublish": "yarn build",
"prettier": "npx prettier --write .",
"prettier-check": "prettier --check ./src ./examples ./tests ./__mocks__ .github/**/*.yml",
"prettier-src": "prettier --write ./src",
"release:prepare": "rm -rf ./dist ./node_modules && yarn install && yarn test && yarn build && yarn bundle && git status",
"test": "jest",
"test-watch": "jest --watch",
"transpile:examles": "ts-node -r tsconfig-paths/register examples/<your file>.ts",
"clean": "rm -rf node_modules dist coverage package-lock.json yarn.lock"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chain4travel/caminojs.git"
},
"keywords": [
"camino",
"blockchain",
"travel"
],
"author": "C4T Team <[email protected]>",
"contributors": [
"Gabriel Cardona <[email protected]>",
"Evan Richard <[email protected]>",
"Paul Kim <[email protected]>",
"Raj Ranjan <[email protected]>",
"Gergely Lovas <[email protected]>",
"Dhruba Basu <[email protected]>"
],
"license": "BSD-3-Clause",
"homepage": "https://github.com/chain4travel/caminojs#readme",
"devDependencies": {
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@types/bech32": "1.1.4",
"@types/bn.js": "5.1.0",
"@types/create-hash": "1.2.2",
"@types/hdkey": "2.0.1",
"@types/jest": "29.4.0",
"@types/node": "18.14.2",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"clean-webpack-plugin": "4.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-security": "1.7.1",
"git-revision-webpack-plugin": "5.0.0",
"html-webpack-plugin": "5.5.0",
"jest": "29.4.3",
"jest-mock-axios": "4.5.0",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"semantic-release": "19.0.5",
"terser-webpack-plugin": "5.3.6",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "0.23.26",
"typedoc-plugin-external-module-name": "4.0.6",
"typedoc-plugin-markdown": "3.14.0",
"typescript": "4.9.5",
"web3": "^1.8.2",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"yarn": "^1.22.22",
"xss": "1.0.14"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"assert": "2.0.0",
"axios": "^0.26.1",
"bech32": "^2.0.0",
"bip39": "3.1.0",
"bn.js": "5.1.1",
"buffer": "^5.5.0",
"create-hash": "1.2.0",
"crypto-browserify": "3.12.0",
"elliptic": "6.5.4",
"ethers": "6.0.8",
"hdkey": "2.1.0",
"isomorphic-ws": "5.0.0",
"randombytes": "^2.1.0",
"store2": "2.14.2",
"stream-browserify": "3.0.0",
"ws": "8.12.1"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": false,
"jsxBracketSameLine": false,
"trailingComma": "none"
},
"resolutions": {
"json5": "2.2.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{ts,tsx}": "eslint --fix --max-warnings 0"
},
"directories": {
"example": "examples",
"test": "tests"
},
"files": [
"dist"
]
}