-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.06 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
{
"name": "txms.js",
"version": "1.3.1",
"description": "Transaction messaging service protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"txms": "bin/txms"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"test": "npm run unit",
"preunit": "npm run build",
"unit": "node --test",
"lint": "eslint 'src/**/*.{js,ts}' --fix"
},
"engines": {
"node": ">= 14"
},
"keywords": [
"txms",
"transaction",
"messaging",
"service",
"protocol",
"crypto",
"crytography",
"blockchain",
"decode",
"decoding",
"encode",
"encoding"
],
"repository": "https://github.com/bchainhub/txms.js",
"homepage": "https://txms.info",
"bugs": {
"url": "https://github.com/bchainhub/txms.js/issues"
},
"files": [
"dist",
"bin",
"LICENSE",
"README.md"
],
"author": "@bchainhub",
"license": "CORE",
"devDependencies": {
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.1",
"jsdom": "^25.0.0",
"typescript": "^5.5.4"
}
}