-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "@stellar-expert/tx-signers-inspector",
"version": "1.8.2",
"author": "OrbitLens<[email protected]>",
"description": "Discover required signers, weights, and build optimal signature schema for Stellar transactions.",
"license": "MIT",
"homepage": "https://github.com/stellar-expert/stellar-tx-signers-inspector",
"scripts": {
"build": "webpack --mode=production --config ./webpack-config.js",
"test": "mocha",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prepare": "npm run build"
},
"bugs": {
"url": "https://github.com/stellar-expert/stellar-tx-signers-inspector/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stellar-expert/stellar-tx-signers-inspector.git"
},
"main": "./lib/stellar-tx-signers-inspector.js",
"module": "./src/index.js",
"keywords": [
"stellar",
"signature",
"transaction",
"multi-sig",
"signer"
],
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@stellar/stellar-sdk": ">11"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@babel/register": "^7.18.9",
"@stellar-expert/eslint-config-js": "^1.1.0",
"babel-loader": "^8.2.5",
"chai": "^4.2.0",
"mocha": "^7.2.0",
"sinon": "^9.2.1 ",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}