This repository has been archived by the owner on Jul 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
58 lines (58 loc) · 1.81 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
{
"name": "@venusprotocol/venus-js",
"version": "2.0.3",
"author": "Venus Labs, Inc.",
"description": "A JavaScript SDK for Ethereum and the Venus Protocol.",
"license": "BSD-3-Clause",
"main": "dist/nodejs/index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint ./src/*.ts",
"build": "npm run lint && ./node_modules/.bin/tsc && npm run rollup",
"docs": "./node_modules/typedoc/bin/typedoc --out ./docs/ ./src/",
"venus_docs": "node ./scripts/venus-docs.js",
"prepare": "npm run build",
"publish_patch": "npm version patch && npm publish --access public",
"publish_minor": "npm version minor && npm publish --access public",
"publish_major": "npm version major && npm publish --access public",
"rollup": "./node_modules/.bin/rollup -c rollup.config.ts",
"test": "./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "https://github.com/venusprotocol/venus-js.git"
},
"keywords": [
"venus",
"venus.js",
"venus finance",
"venus protocol",
"decentralized finance",
"defi",
"ethereum",
"binance",
"binance smart chain"
],
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/node": "^14.0.11",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-jest": "^26.0.1",
"docblock-parser": "^1.0.0",
"eslint": "^7.9.0",
"jest": "^26.0.1",
"rollup": "^2.15.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"typedoc": "^0.18.0",
"typescript": "^3.9.5"
},
"dependencies": {
"ethers": "^5.0.7"
}
}