-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 814 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 814 Bytes
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
{
"name": "@cryptolions/msig-tool",
"version": "1.0.1",
"description": "Web tool to build multi-signature transaction on EOSIO chains",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [],
"author": "Cryptolions",
"license": "MIT / Apache 2.0 / GPLv3 / Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/CryptoLions/MSIG_tool"
},
"devDependencies": {
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.4"
},
"dependencies": {
"eosjs": "^22.1.0"
}
}