-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.56 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
{
"name": "@bcpros/xaddress",
"version": "0.0.9",
"description": "Lotus xaddress format support for node.js and browsers",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"module": "./dist/esm/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc -b tsconfig.json tsconfig.esm.json tsconfig.types.json",
"eslint": "eslint . --ext .ts",
"eslint-fix": "eslint . --ext .ts --fix",
"test": "jest",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"testMatch": [
"/**/*.test.ts"
]
},
"publishConfig": {
"access": "public"
},
"keywords": [
"cash",
"address",
"format",
"lotus",
"xaddress"
],
"authors": [
],
"license": "MIT",
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.10",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"@typescript-eslint/types": "^4.28.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fullstack-build/tslog.git"
},
"dependencies": {
"bs58": "^4.0.1"
}
}