forked from originalix/coin-selection
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.72 KB
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
{
"name": "@onekeyfe/cardano-coin-selection",
"version": "1.0.0",
"description": "",
"keywords": [
"coin selection"
],
"license": "MIT",
"author": "OneKeyHQ",
"homepage": "https://github.com/OneKeyHQ/coin-selection",
"repository": {
"type": "git",
"url": "git+https://github.com/OneKeyHQ/coin-selection.git"
},
"publishConfig": {
"access": "public"
},
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"files": [
"lib/**/*.js",
"lib/**/*.ts"
],
"scripts": {
"build": "yarn clean && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"clean": "rimraf lib",
"lint": "eslint ./src/**/*.ts",
"prepublishOnly": "yarn build",
"type-check": "yarn tsc -p tsconfig.types.json",
"test": "yarn run-s 'test:*'",
"test:unit": "jest -c ./jest.config.js",
"test:badges": "make-coverage-badge --output-path ./docs/badge-coverage.svg"
},
"devDependencies": {
"@emurgo/cardano-serialization-lib-nodejs": "11.0.0",
"@swc-node/jest": "^1.5.2",
"@types/jest": "^28.1.6",
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "5.32.0",
"bignumber.js": "^9.0.1",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "^28.1.3",
"make-coverage-badge": "^1.2.0",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@emurgo/cardano-message-signing-browser": "^1.0.1",
"@emurgo/cardano-serialization-lib-browser": "11.1.0"
},
"peerDependencies": {
"bignumber.js": "^9.0.1"
},
"packageManager": "yarn@3.2.2"
}