forked from starcoinorg/starcoin.js
/
package.json
106 lines (106 loc) · 2.85 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
{
"name": "@starcoin/starcoin",
"version": "2.3.6",
"description": "starcoin js sdk",
"author": "lerencao, wk3368, tarvos21",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/starcoinorg/starcoin.js"
},
"homepage": "https://github.com/starcoinorg/starcoin.js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/starcoinorg/starcoin.js"
},
"keywords": [
"starcoin",
"defi",
"dapp",
"sdk",
"blockchain",
"client",
"javascript"
],
"source": "index.ts",
"types": "dist/index.d.ts",
"main": "dist/starcoin.js",
"module": "dist/starcoin.module.js",
"umd:main": "./dist/starcoin.umd.js",
"files": [
"dist",
"LICENSE",
"readme.md"
],
"dependencies": {
"@ethersproject/basex": "^5.0.4",
"@ethersproject/bignumber": "^5.0",
"@ethersproject/bytes": "^5.0.6",
"@ethersproject/hash": "^5.0.6",
"@ethersproject/keccak256": "^5.0.5",
"@ethersproject/logger": "^5.0.6",
"@ethersproject/properties": "^5.0.4",
"@ethersproject/sha2": "^5.0.4",
"@ethersproject/web": "^5.0.9",
"@noble/ed25519": "^1.6.0",
"bech32": "^2.0.0",
"ethereumjs-util": "5.1.0",
"fs": "^0.0.1-security",
"is-alphabetical": "^1.0.4",
"is-alphanumerical": "^1.0.4",
"is-decimal": "^1.0.4",
"is-hexadecimal": "^1.0.4",
"is-whitespace-character": "^1.0.4",
"is-word-character": "^1.0.4",
"js-sha3": "^0.8.0",
"jssha": "^3.2.0",
"lodash": "^4.17.21",
"ws": "7.2.3"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.10.1",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^22.0.0",
"jest": "^26.4.2",
"microbundle": "^0.12.0",
"prettier": "^2.0.4",
"ts-jest": "^26.3.0",
"typescript": "^4.0.3"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "microbundle -o dist/ --sourcemap false --compress false -f modern,es,cjs && microbundle -o dist/ -f umd",
"dev": "microbundle watch -o dist/ --sourcemap false --compress false -f modern,es,cjs",
"test": "yarn test:coverage",
"test:unit": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"node_modules",
"dist",
"coverage"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
}
}